Skip to content

Commit

Permalink
Integrate latest dependencies,
Browse files Browse the repository at this point in the history
update build plugins

Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Feb 19, 2021
1 parent 7fdd23f commit 0d4fa9c
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions api/pom.xml
@@ -1,6 +1,6 @@
<!--
Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
Expand Down Expand Up @@ -106,7 +106,7 @@
<spotbugs.exclude>${project.basedir}/exclude.xml</spotbugs.exclude>
<spotbugs.skip>false</spotbugs.skip>
<spotbugs.threshold>Low</spotbugs.threshold>
<spotbugs.version>4.0.4</spotbugs.version>
<spotbugs.version>4.2.0</spotbugs.version>

<release.spec.feedback>jaxws-dev@eclipse.org</release.spec.feedback>

Expand All @@ -120,8 +120,8 @@
<legal.doc.source>${project.basedir}/..</legal.doc.source>

<jws-api.version>3.0.0</jws-api.version>
<soap-api.version>2.0.0</soap-api.version>
<xml.bind-api.version>3.0.0</xml.bind-api.version>
<soap-api.version>2.0.1</soap-api.version>
<xml.bind-api.version>3.0.1</xml.bind-api.version>
</properties>

<build>
Expand Down Expand Up @@ -175,7 +175,7 @@
<plugin>
<groupId>org.glassfish.copyright</groupId>
<artifactId>glassfish-copyright-maven-plugin</artifactId>
<version>2.3</version>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.glassfish.build</groupId>
Expand Down Expand Up @@ -238,6 +238,7 @@
<update>${copyright.update}</update>
<!-- check that year is correct -->
<ignoreYear>${copyright.ignoreyear}</ignoreYear>
<quiet>false</quiet>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -270,6 +271,18 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>currentyear-property</id>
<goals>
<goal>timestamp-property</goal>
</goals>
<phase>validate</phase>
<configuration>
<name>current.year</name>
<locale>en,US</locale>
<pattern>yyyy</pattern>
</configuration>
</execution>
<execution>
<id>add-legal-resource</id>
<phase>generate-resources</phase>
Expand All @@ -295,8 +308,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
<release>9</release>
<compilerArgs>
<arg>-Xlint:all</arg>
</compilerArgs>
Expand Down Expand Up @@ -420,7 +432,7 @@
<header><![CDATA[Jakarta XML Web Services<br>v${spec.version}]]></header>
<bottom><![CDATA[
Comments to: <a href="mailto:${release.spec.feedback}">${release.spec.feedback}</a>.<br>
Copyright &#169; 2019, 2020 Eclipse Foundation. All rights reserved.<br>
Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.<br>
Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">license terms</a>.]]>
</bottom>
</configuration>
Expand Down

0 comments on commit 0d4fa9c

Please sign in to comment.