|
17 | 17 | <dependency>
|
18 | 18 | <groupId>junit</groupId>
|
19 | 19 | <artifactId>junit</artifactId>
|
20 |
| - <version>4.13.1</version> |
| 20 | + <version>4.13.2</version> |
21 | 21 | <scope>test</scope>
|
22 | 22 | </dependency>
|
23 | 23 | <dependency>
|
24 | 24 | <groupId>com.fasterxml.woodstox</groupId>
|
25 | 25 | <artifactId>woodstox-core</artifactId>
|
26 |
| - <version>5.0.3</version> |
| 26 | + <version>6.2.8</version> |
27 | 27 | <scope>test</scope>
|
28 | 28 | </dependency>
|
29 | 29 | </dependencies>
|
|
46 | 46 | <build>
|
47 | 47 |
|
48 | 48 | <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> |
49 | 69 | <plugin>
|
50 | 70 | <groupId>org.apache.maven.plugins</groupId>
|
51 | 71 | <artifactId>maven-compiler-plugin</artifactId>
|
52 |
| - <version>3.7.0</version> |
| 72 | + <version>3.10.1</version> |
53 | 73 | <configuration>
|
54 | 74 | <source>1.8</source>
|
55 | 75 | <target>1.8</target>
|
|
59 | 79 | <showWarnings>true</showWarnings>
|
60 | 80 | </configuration>
|
61 | 81 | </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> |
62 | 93 | <plugin>
|
63 | 94 | <groupId>org.apache.felix</groupId>
|
64 | 95 | <artifactId>maven-bundle-plugin</artifactId>
|
65 | 96 | <extensions>true</extensions>
|
66 |
| - <version>1.0.0</version> |
| 97 | + <version>5.1.6</version> |
67 | 98 | <configuration>
|
68 | 99 | <instructions>
|
69 | 100 | <Bundle-Name>${project.artifactId}</Bundle-Name>
|
70 | 101 | <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
|
71 | 102 | <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> |
74 | 104 | <Implementation-Title>${project.name}</Implementation-Title>
|
75 | 105 | <Implementation-Version>${project.version}</Implementation-Version>
|
| 106 | + <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy> |
| 107 | + <_nouses>true</_nouses> |
76 | 108 | </instructions>
|
77 | 109 | </configuration>
|
78 | 110 | </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> |
90 | 111 | </plugins>
|
91 | 112 | <pluginManagement>
|
92 | 113 | <plugins>
|
93 | 114 | <plugin>
|
94 | 115 | <groupId>org.apache.maven.plugins</groupId>
|
95 | 116 | <artifactId>maven-release-plugin</artifactId>
|
96 |
| - <version>2.5.2</version> |
| 117 | + <version>2.5.3</version> |
97 | 118 | <configuration>
|
98 | 119 | <useReleaseProfile>false</useReleaseProfile>
|
99 | 120 | <preparationGoals>clean install</preparationGoals>
|
|
114 | 135 | <plugin>
|
115 | 136 | <inherited>true</inherited>
|
116 | 137 | <artifactId>maven-deploy-plugin</artifactId>
|
117 |
| - <version>2.8.1</version> |
| 138 | + <version>2.8.2</version> |
118 | 139 | <configuration>
|
119 | 140 | <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
|
120 | 141 | <updateReleaseInfo>true</updateReleaseInfo>
|
|
123 | 144 | <!-- We want to sign the artifact, the POM, and all attached artifacts -->
|
124 | 145 | <plugin>
|
125 | 146 | <artifactId>maven-gpg-plugin</artifactId>
|
126 |
| - <version>1.6</version> |
| 147 | + <version>3.0.1</version> |
127 | 148 | <executions>
|
128 | 149 | <execution>
|
129 | 150 | <goals>
|
|
0 commit comments