Skip to content

Commit 62c57bc

Browse files
committed
[api] bump project version, update build plugins
Signed-off-by: Lukas Jungmann <[email protected]>
1 parent abca44b commit 62c57bc

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

api/pom.xml

Lines changed: 18 additions & 5 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) 2011, 2020 Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2011, 2021 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
77
terms of the Eclipse Public License v. 2.0, which is available at
@@ -30,7 +30,7 @@
3030
<groupId>jakarta.json</groupId>
3131
<artifactId>jakarta.json-api</artifactId>
3232

33-
<version>2.0.0-SNAPSHOT</version>
33+
<version>2.0.1-SNAPSHOT</version>
3434
<name>Jakarta JSON Processing API</name>
3535
<description>Jakarta JSON Processing defines a Java(R) based framework for parsing, generating, transforming, and querying JSON documents.</description>
3636
<url>https://github.com/eclipse-ee4j/jsonp</url>
@@ -83,7 +83,7 @@
8383
<copyright.update>false</copyright.update>
8484
<spotbugs.skip>false</spotbugs.skip>
8585
<spotbugs.threshold>Low</spotbugs.threshold>
86-
<spotbugs.version>4.0.4</spotbugs.version>
86+
<spotbugs.version>4.2.2</spotbugs.version>
8787

8888
<non.final>false</non.final>
8989
<extension.name>jakarta.json</extension.name>
@@ -114,7 +114,7 @@
114114
<plugin>
115115
<groupId>org.glassfish.copyright</groupId>
116116
<artifactId>glassfish-copyright-maven-plugin</artifactId>
117-
<version>2.3</version>
117+
<version>2.4</version>
118118
</plugin>
119119
<plugin>
120120
<groupId>org.apache.maven.plugins</groupId>
@@ -213,6 +213,7 @@
213213
<scmOnly>${copyright.scmonly}</scmOnly>
214214
<update>${copyright.update}</update>
215215
<ignoreYear>${copyright.ignoreyear}</ignoreYear>
216+
<quiet>false</quiet>
216217
</configuration>
217218
<executions>
218219
<execution>
@@ -264,6 +265,18 @@
264265
</resources>
265266
</configuration>
266267
</execution>
268+
<execution>
269+
<id>currentyear-property</id>
270+
<goals>
271+
<goal>timestamp-property</goal>
272+
</goals>
273+
<phase>validate</phase>
274+
<configuration>
275+
<name>current.year</name>
276+
<locale>en,US</locale>
277+
<pattern>yyyy</pattern>
278+
</configuration>
279+
</execution>
267280
</executions>
268281
</plugin>
269282
<plugin>
@@ -382,7 +395,7 @@
382395
<header><![CDATA[<br>JSON Processing API v${project.version}]]></header>
383396
<bottom><![CDATA[
384397
Comments to: <a href="mailto:[email protected]">[email protected]</a>.<br>
385-
Copyright &#169; 2019, 2020 Eclipse Foundation. All rights reserved.<br>
398+
Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.<br>
386399
Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">license terms</a>.]]>
387400
</bottom>
388401
</configuration>

0 commit comments

Comments
 (0)