Skip to content

Commit 9ccf9d0

Browse files
committed
Update some deps/plugin versions
1 parent cfc7382 commit 9ccf9d0

File tree

1 file changed

+41
-20
lines changed

1 file changed

+41
-20
lines changed

pom.xml

+41-20
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
<dependency>
1818
<groupId>junit</groupId>
1919
<artifactId>junit</artifactId>
20-
<version>4.13.1</version>
20+
<version>4.13.2</version>
2121
<scope>test</scope>
2222
</dependency>
2323
<dependency>
2424
<groupId>com.fasterxml.woodstox</groupId>
2525
<artifactId>woodstox-core</artifactId>
26-
<version>5.0.3</version>
26+
<version>6.2.8</version>
2727
<scope>test</scope>
2828
</dependency>
2929
</dependencies>
@@ -46,10 +46,30 @@
4646
<build>
4747

4848
<plugins>
49+
<plugin>
50+
<groupId>org.apache.maven.plugins</groupId>
51+
<artifactId>maven-enforcer-plugin</artifactId>
52+
<version>3.0.0</version>
53+
<executions>
54+
<execution>
55+
<id>enforce-maven</id>
56+
<goals>
57+
<goal>enforce</goal>
58+
</goals>
59+
<configuration>
60+
<rules>
61+
<requireMavenVersion>
62+
<version>3.2.5</version>
63+
</requireMavenVersion>
64+
</rules>
65+
</configuration>
66+
</execution>
67+
</executions>
68+
</plugin>
4969
<plugin>
5070
<groupId>org.apache.maven.plugins</groupId>
5171
<artifactId>maven-compiler-plugin</artifactId>
52-
<version>3.7.0</version>
72+
<version>3.10.1</version>
5373
<configuration>
5474
<source>1.8</source>
5575
<target>1.8</target>
@@ -59,41 +79,42 @@
5979
<showWarnings>true</showWarnings>
6080
</configuration>
6181
</plugin>
82+
<plugin>
83+
<groupId>org.sonatype.plugins</groupId>
84+
<artifactId>nexus-staging-maven-plugin</artifactId>
85+
<version>1.6.13</version>
86+
<extensions>true</extensions>
87+
<configuration>
88+
<serverId>ossrh</serverId>
89+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
90+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
91+
</configuration>
92+
</plugin>
6293
<plugin>
6394
<groupId>org.apache.felix</groupId>
6495
<artifactId>maven-bundle-plugin</artifactId>
6596
<extensions>true</extensions>
66-
<version>1.0.0</version>
97+
<version>5.1.6</version>
6798
<configuration>
6899
<instructions>
69100
<Bundle-Name>${project.artifactId}</Bundle-Name>
70101
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
71102
<Export-Package>org.codehaus.jettison*;version=${project.version}</Export-Package>
72-
<Import-Package>*</Import-Package>
73-
<Private-Package>!*</Private-Package>
103+
<Import-Package>javax.xml,*</Import-Package>
74104
<Implementation-Title>${project.name}</Implementation-Title>
75105
<Implementation-Version>${project.version}</Implementation-Version>
106+
<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
107+
<_nouses>true</_nouses>
76108
</instructions>
77109
</configuration>
78110
</plugin>
79-
<plugin>
80-
<groupId>org.sonatype.plugins</groupId>
81-
<artifactId>nexus-staging-maven-plugin</artifactId>
82-
<version>1.6.8</version>
83-
<extensions>true</extensions>
84-
<configuration>
85-
<serverId>ossrh</serverId>
86-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
87-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
88-
</configuration>
89-
</plugin>
90111
</plugins>
91112
<pluginManagement>
92113
<plugins>
93114
<plugin>
94115
<groupId>org.apache.maven.plugins</groupId>
95116
<artifactId>maven-release-plugin</artifactId>
96-
<version>2.5.2</version>
117+
<version>2.5.3</version>
97118
<configuration>
98119
<useReleaseProfile>false</useReleaseProfile>
99120
<preparationGoals>clean install</preparationGoals>
@@ -114,7 +135,7 @@
114135
<plugin>
115136
<inherited>true</inherited>
116137
<artifactId>maven-deploy-plugin</artifactId>
117-
<version>2.8.1</version>
138+
<version>2.8.2</version>
118139
<configuration>
119140
<altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
120141
<updateReleaseInfo>true</updateReleaseInfo>
@@ -123,7 +144,7 @@
123144
<!-- We want to sign the artifact, the POM, and all attached artifacts -->
124145
<plugin>
125146
<artifactId>maven-gpg-plugin</artifactId>
126-
<version>1.6</version>
147+
<version>3.0.1</version>
127148
<executions>
128149
<execution>
129150
<goals>

0 commit comments

Comments
 (0)