Skip to content

Commit b1d6d9e

Browse files
committed
remove maven-release plugin, correct replacer regex, update inception year
1 parent f9f31b3 commit b1d6d9e

24 files changed

Lines changed: 33 additions & 47 deletions

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2021 con terra GmbH (info@conterra.de)
2+
# Copyright (C) 2024 con terra GmbH (info@conterra.de)
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2021 con terra GmbH (info@conterra.de)
2+
* Copyright (C) 2024 con terra GmbH (info@conterra.de)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

pom.xml

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (C) 2023 con terra GmbH (info@conterra.de)
4+
Copyright (C) 2024 con terra GmbH (info@conterra.de)
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -149,10 +149,6 @@
149149
<artifactId>build-helper-maven-plugin</artifactId>
150150
<version>3.1.0</version>
151151
</plugin>
152-
<plugin>
153-
<artifactId>maven-release-plugin</artifactId>
154-
<version>2.5.3</version>
155-
</plugin>
156152
<plugin>
157153
<artifactId>maven-assembly-plugin</artifactId>
158154
<version>3.0.0</version>
@@ -315,7 +311,7 @@
315311
<properties>
316312
<owner>con terra GmbH</owner>
317313
<email>info@conterra.de</email>
318-
<project.inceptionYear>2023</project.inceptionYear>
314+
<project.inceptionYear>2024</project.inceptionYear>
319315
</properties>
320316
<includes>
321317
<include>src/main/js/**/*.js</include>
@@ -366,9 +362,8 @@
366362
<replacements>
367363
<replacement>
368364
<!-- remove bundleLocations from app.json -->
369-
<token>
370-
\s*"bundleLocations"\s*:\s*\[\s*"localbundles"\s*,\s*"bundles"\s*\]\s*,\s*</token>
371-
<value />
365+
<token>\s*"bundleLocations"\s*:\s*\[\s*"localbundles"\s*,\s*"bundles"\s*\]\s*,</token>
366+
<value></value>
372367
</replacement>
373368
</replacements>
374369
</configuration>
@@ -454,15 +449,6 @@
454449
</execution>
455450
</executions>
456451
</plugin>
457-
<plugin>
458-
<artifactId>maven-release-plugin</artifactId>
459-
<configuration>
460-
<tagNameFormat>@{project.version}</tagNameFormat>
461-
<preparationGoals>clean</preparationGoals>
462-
<releaseProfiles>compress</releaseProfiles>
463-
<autoVersionSubmodules>true</autoVersionSubmodules>
464-
</configuration>
465-
</plugin>
466452
</plugins>
467453
</build>
468454
<scm>
@@ -669,12 +655,12 @@
669655
<groupId>de.conterra.jsregistry</groupId>
670656
<artifactId>ct-jsregistry-maven-plugin</artifactId>
671657
<executions>
672-
<execution>
658+
<!--<execution>
673659
<id>calculate js dependencies</id>
674660
<goals>
675661
<goal>calculateDependencies</goal>
676662
</goals>
677-
</execution>
663+
</execution>-->
678664
<!--
679665
680666
The optimizeJS goal is usually no longer required because compression is done via terser (see

src/main/config/assembly.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
3-
Copyright (C) 2021 con terra GmbH (info@conterra.de)
3+
Copyright (C) 2024 con terra GmbH (info@conterra.de)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

src/main/js/apps/manager/app.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
"title": "Manager"
55
},
66
"load": {
7+
"bundleLocations": [
8+
"localbundles",
9+
"bundles"
10+
],
711
"allowedBundles": [
812
"system",
913
"splashscreen",
@@ -14,10 +18,6 @@
1418
"managementlayout",
1519
"theme-everlasting",
1620
"mapapps-github-manager"
17-
],
18-
"bundleLocations": [
19-
"localbundles",
20-
"bundles"
2121
]
2222
},
2323
"bundles": {
@@ -41,4 +41,4 @@
4141
}
4242
}
4343
}
44-
}
44+
}

src/main/js/bundles/mapapps-github-manager/BundleDetailsController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2021 con terra GmbH (info@conterra.de)
2+
* Copyright (C) 2024 con terra GmbH (info@conterra.de)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/js/bundles/mapapps-github-manager/BundleStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2021 con terra GmbH (info@conterra.de)
2+
* Copyright (C) 2024 con terra GmbH (info@conterra.de)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/js/bundles/mapapps-github-manager/BundleTopWidget.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
3-
Copyright (C) 2021 con terra GmbH (info@conterra.de)
3+
Copyright (C) 2024 con terra GmbH (info@conterra.de)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

src/main/js/bundles/mapapps-github-manager/BundleWidget.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2021 con terra GmbH (info@conterra.de)
2+
* Copyright (C) 2024 con terra GmbH (info@conterra.de)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/js/bundles/mapapps-github-manager/BundleWidgetFactory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2021 con terra GmbH (info@conterra.de)
2+
* Copyright (C) 2024 con terra GmbH (info@conterra.de)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)