Skip to content

Commit

Permalink
Versionds update. (#46)
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Kraus <Tomas.Kraus@oracle.com>
  • Loading branch information
Tomas-Kraus committed Jul 28, 2020
1 parent 4761872 commit e51c47d
Showing 1 changed file with 36 additions and 14 deletions.
50 changes: 36 additions & 14 deletions streambuffer/pom.xml
Expand Up @@ -74,33 +74,59 @@
<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.0.4</spotbugs.version>

<stax-ex.version>2.0.0</stax-ex.version>
<activation.version>2.0.0</activation.version>
<junit.version>4.13</junit.version>
<woodstox-core.version>6.2.1</woodstox-core.version>

<legal.doc.source>${project.basedir}/..</legal.doc.source>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jvnet.staxex</groupId>
<artifactId>stax-ex</artifactId>
<version>${stax-ex.version}</version>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>jakarta.activation</artifactId>
<version>${activation.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
<version>${woodstox-core.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.jvnet.staxex</groupId>
<artifactId>stax-ex</artifactId>
<version>2.0.0-M2</version>
</dependency>
<dependency>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
<version>2.0.0-RC3</version>
<groupId>com.sun.activation</groupId>
<artifactId>jakarta.activation</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
<version>5.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -111,7 +137,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -131,7 +157,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
Expand All @@ -156,7 +182,7 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>4.2.1</version>
<version>5.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -311,10 +337,6 @@
<instructions>
<_noextraheaders>true</_noextraheaders>
<Implementation-Build-Id>${project.version} - ${buildNumber}</Implementation-Build-Id>
<Import-Package>
javax.activation;version=!,
*
</Import-Package>
</instructions>
</configuration>
</execution>
Expand Down

0 comments on commit e51c47d

Please sign in to comment.