Skip to content

Commit 42b4ce3

Browse files
committed
Prepare to release 4.2.0
1 parent d5347c8 commit 42b4ce3

File tree

6 files changed

+29
-5
lines changed

6 files changed

+29
-5
lines changed

weasis-distributions/etc/config/base.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,14 +370,14 @@
370370
},
371371
{
372372
"code": "weasis.releasenotes",
373-
"value": "https://github.com/nroduit/Weasis/blob/master/CHANGELOG.md#v412-2023-06-16",
373+
"value": "${weasis.releasenotes}",
374374
"description": "Release notes",
375375
"type": "A",
376376
"category": "DOC"
377377
},
378378
{
379379
"code": "weasis.copyrights",
380-
"value": "© 2009-2023 Weasis Team",
380+
"value": "© 2009-${build.year} Weasis Team",
381381
"description": "Copyrights",
382382
"type": "A",
383383
"category": "DOC"

weasis-distributions/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,16 @@
138138
</regexPropertySettings>
139139
</configuration>
140140
</execution>
141+
<execution>
142+
<id>timestamp-property</id>
143+
<goals>
144+
<goal>timestamp-property</goal>
145+
</goals>
146+
<configuration>
147+
<name>build.year</name>
148+
<pattern>yyyy</pattern>
149+
</configuration>
150+
</execution>
141151
</executions>
142152
</plugin>
143153

weasis-distributions/src/assembly/native-dist.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
<!-- copy OSGI framework config -->
3636
<directory>etc/config</directory>
3737
<outputDirectory>bin-dist/weasis/conf</outputDirectory>
38+
<includes>
39+
<include>*.json</include>
40+
</includes>
3841
<filtered>true</filtered>
3942
</fileSet>
4043
<fileSet>

weasis-launcher/conf/base.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,14 +377,14 @@
377377
},
378378
{
379379
"code": "weasis.releasenotes",
380-
"value": "https://github.com/nroduit/Weasis/blob/master/CHANGELOG.md#v412-2023-06-16",
380+
"value": "${weasis.releasenotes}",
381381
"description": "Release notes",
382382
"type": "A",
383383
"category": "DOC"
384384
},
385385
{
386386
"code": "weasis.copyrights",
387-
"value": "© 2009-2023 Weasis Team",
387+
"value": "© 2009-${build.year} Weasis Team",
388388
"description": "Copyrights",
389389
"type": "A",
390390
"category": "DOC"

weasis-launcher/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,16 @@
5252
</resources>
5353
</configuration>
5454
</execution>
55+
<execution>
56+
<id>timestamp-property</id>
57+
<goals>
58+
<goal>timestamp-property</goal>
59+
</goals>
60+
<configuration>
61+
<name>build.year</name>
62+
<pattern>yyyy</pattern>
63+
</configuration>
64+
</execution>
5565
</executions>
5666
</plugin>
5767
<plugin>

weasis-parent/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- force command line arguments settings to set version -->
1616
<!-- $ mvn clean install -Drevision=4.0.3 -Dchangelist=-SNAPSHOT -->
1717
<revision>4.2.0</revision>
18-
<changelist>-SNAPSHOT</changelist> <!-- Remove "-SNAPSHOT" for release -->
18+
<changelist></changelist> <!-- Remove "-SNAPSHOT" for release -->
1919

2020
<java-version>21</java-version>
2121
<jdk-version>21</jdk-version>
@@ -27,6 +27,7 @@
2727
<app.version>${revision}${changelist}</app.version>
2828
<base.minimal.version>4.2.0</base.minimal.version>
2929
<i18n.version>4.0.0-SNAPSHOT</i18n.version>
30+
<weasis.releasenotes>https://github.com/nroduit/Weasis/blob/master/CHANGELOG.md#v420-2023-08-18</weasis.releasenotes>
3031

3132
<felix.framework.version>7.0.5</felix.framework.version>
3233
<flatlaf.version>3.2</flatlaf.version>

0 commit comments

Comments
 (0)