Skip to content

Commit

Permalink
update dependencies, plugins
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Apr 26, 2023
1 parent 7ad108c commit c9ae9aa
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 54 deletions.
4 changes: 3 additions & 1 deletion .gitignore
@@ -1 +1,3 @@
/policy/target/
.idea
/policy/target/
*.iml
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

99 changes: 75 additions & 24 deletions policy/pom.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 1997, 2023 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 All @@ -17,7 +17,7 @@
<parent>
<groupId>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
<version>1.0.6</version>
<version>1.0.8</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -81,10 +81,10 @@
<spotbugs.exclude>${project.basedir}/exclude.xml</spotbugs.exclude>
<spotbugs.skip>false</spotbugs.skip>
<spotbugs.threshold>Low</spotbugs.threshold>
<spotbugs.version>4.0.0</spotbugs.version>
<spotbugs.version>4.7.3.4</spotbugs.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<istack.version>3.0.11</istack.version>
<istack.version>3.0.12</istack.version>
<legal.doc.source>${project.basedir}/..</legal.doc.source>
</properties>

Expand All @@ -93,13 +93,25 @@
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.3</version>
<!-- <exclusions>-->
<!-- <exclusion>-->
<!-- <groupId>com.sun.activation</groupId>-->
<!-- <artifactId>*</artifactId>-->
<!-- </exclusion>-->
<!-- </exclusions>-->
</dependency>
<dependency>
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
<version>5.4.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>stax2-api</artifactId>
<version>4.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<!-- javac requires this to be on the compile-classpath -->
<groupId>jakarta.activation</groupId>
Expand All @@ -110,7 +122,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -121,12 +133,12 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.1.0</version>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.11.0</version>
</plugin>
<plugin>
<groupId>com.sun.istack</groupId>
Expand All @@ -136,17 +148,17 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.4</version>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.2</version>
<version>5.1.8</version>
<configuration>
<instructions>
<_noextraheaders>true</_noextraheaders>
Expand All @@ -161,12 +173,12 @@
<plugin>
<groupId>org.glassfish.copyright</groupId>
<artifactId>glassfish-copyright-maven-plugin</artifactId>
<version>2.3</version>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -176,17 +188,51 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.15.0</version>
<configuration>
<!-- stick with javax namespace only -->
<ruleSet>
<rules>
<rule>
<groupId>com.sun.istack</groupId>
<ignoreVersions>
<ignoreVersion>
<type>regex</type>
<version>[4-9].*</version>
</ignoreVersion>
</ignoreVersions>
</rule>
<rule>
<groupId>com.sun.xml.bind</groupId>
<ignoreVersions>
<ignoreVersion>
<type>regex</type>
<version>2.[4-9]+.*</version>
</ignoreVersion>
<ignoreVersion>
<type>regex</type>
<version>[3-9].*</version>
</ignoreVersion>
</ignoreVersions>
</rule>
</rules>
</ruleSet>
</configuration>
</plugin>
</plugins>
</pluginManagement>
Expand Down Expand Up @@ -221,11 +267,11 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
<compilerArguments>
<Xlint:all/>
</compilerArguments>
<release>11</release>
<createMissingPackageInfoClass>false</createMissingPackageInfoClass>
<compilerArgs combine.children="append">
<arg>-Xlint:all</arg>
</compilerArgs>
</configuration>
<executions>
<execution>
Expand All @@ -235,8 +281,6 @@
</goals>
<configuration>
<release>8</release>
<source>1.8</source>
<target>1.8</target>
<excludes>
<exclude>module-info.java</exclude>
</excludes>
Expand Down Expand Up @@ -277,6 +321,13 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useModulePath>false</useModulePath>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
Expand Down Expand Up @@ -330,7 +381,6 @@
<configuration>
<skip>${spotbugs.skip}</skip>
<threshold>${spotbugs.threshold}</threshold>
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
<excludeFilterFile>
${spotbugs.exclude}
</excludeFilterFile>
Expand Down Expand Up @@ -384,6 +434,7 @@
</archive>
<release>11</release>
<notimestamp>true</notimestamp>
<doclint>-missing</doclint>
</configuration>
</plugin>
</plugins>
Expand All @@ -398,7 +449,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<version>0.8.10</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down

0 comments on commit c9ae9aa

Please sign in to comment.