|
38 | 38 | version of hamcrest -->
|
39 | 39 | <groupId>org.hamcrest</groupId>
|
40 | 40 | <artifactId>hamcrest-junit</artifactId>
|
41 |
| - <version>2.0.0.0</version> |
42 | 41 | <scope>test</scope>
|
43 | 42 | </dependency>
|
44 | 43 | <dependency>
|
45 | 44 | <groupId>junit</groupId>
|
46 | 45 | <artifactId>junit</artifactId>
|
47 |
| - <version>${junit-version}</version> |
48 | 46 | <scope>test</scope>
|
49 | 47 | </dependency>
|
50 | 48 | <dependency>
|
51 | 49 | <groupId>org.glassfish.jersey.core</groupId>
|
52 | 50 | <artifactId>jersey-client</artifactId>
|
53 |
| - <version>${jersey-version}</version> |
54 | 51 | </dependency>
|
55 | 52 | <dependency>
|
56 | 53 | <groupId>org.glassfish.jersey.media</groupId>
|
57 | 54 | <artifactId>jersey-media-json-processing</artifactId>
|
58 |
| - <version>${jersey-version}</version> |
59 | 55 | </dependency>
|
60 | 56 | <dependency>
|
61 | 57 | <groupId>org.glassfish.jersey.inject</groupId>
|
62 | 58 | <artifactId>jersey-hk2</artifactId>
|
63 |
| - <version>${jersey-version}</version> |
64 | 59 | </dependency>
|
65 | 60 | <dependency>
|
66 | 61 | <groupId>com.google.guava</groupId>
|
67 | 62 | <artifactId>guava</artifactId>
|
68 |
| - <version>${guava-version}</version> |
69 | 63 | </dependency>
|
70 | 64 | <!-- JSON processing: jackson -->
|
71 | 65 | <dependency>
|
|
100 | 94 | <dependency>
|
101 | 95 | <groupId>javax.jms</groupId>
|
102 | 96 | <artifactId>javax.jms-api</artifactId>
|
103 |
| - <version>2.0.1</version> |
104 | 97 | </dependency>
|
105 | 98 | <dependency>
|
106 | 99 | <groupId>javax.xml.bind</groupId>
|
107 | 100 | <artifactId>jaxb-api</artifactId>
|
108 |
| - <version>2.3.1</version> |
109 | 101 | </dependency>
|
110 | 102 | <dependency>
|
111 | 103 | <groupId>net.sourceforge.htmlunit</groupId>
|
112 | 104 | <artifactId>htmlunit</artifactId>
|
113 |
| - <version>2.32</version> |
114 | 105 | </dependency>
|
115 | 106 | </dependencies>
|
116 | 107 |
|
|
119 | 110 | <plugin>
|
120 | 111 | <groupId>org.apache.maven.plugins</groupId>
|
121 | 112 | <artifactId>maven-enforcer-plugin</artifactId>
|
122 |
| - <version>${maven-enforcer-plugin-version}</version> |
123 |
| - <executions> |
124 |
| - <execution> |
125 |
| - <id>enforce-maven</id> |
126 |
| - <goals> |
127 |
| - <goal>enforce</goal> |
128 |
| - </goals> |
129 |
| - <configuration> |
130 |
| - <rules> |
131 |
| - <requireMavenVersion> |
132 |
| - <version>${maven.version.range}</version> |
133 |
| - </requireMavenVersion> |
134 |
| - <requireJavaVersion> |
135 |
| - <version>${java.version.range}</version> |
136 |
| - </requireJavaVersion> |
137 |
| - <requirePluginVersions></requirePluginVersions> |
138 |
| - </rules> |
139 |
| - </configuration> |
140 |
| - </execution> |
141 |
| - </executions> |
142 | 113 | </plugin>
|
143 | 114 | <plugin>
|
144 | 115 | <groupId>org.apache.maven.plugins</groupId>
|
145 | 116 | <artifactId>maven-compiler-plugin</artifactId>
|
146 |
| - <version>${maven-compiler-plugin-version}</version> |
147 |
| - <configuration> |
148 |
| - <release>11</release> |
149 |
| - <compilerArgs> |
150 |
| - <arg>-Xpkginfo:always</arg> |
151 |
| - </compilerArgs> |
152 |
| - </configuration> |
153 | 117 | </plugin>
|
154 | 118 | <plugin>
|
155 | 119 | <groupId>org.apache.maven.plugins</groupId>
|
156 | 120 | <artifactId>maven-release-plugin</artifactId>
|
157 |
| - <version>${maven-release-plugin-version}</version> |
158 | 121 | </plugin>
|
159 | 122 | <plugin>
|
160 | 123 | <groupId>org.apache.maven.plugins</groupId>
|
161 | 124 | <artifactId>maven-resources-plugin</artifactId>
|
162 |
| - <version>${maven-resources-plugin-version}</version> |
163 | 125 | </plugin>
|
164 | 126 | <plugin>
|
165 | 127 | <groupId>org.apache.maven.plugins</groupId>
|
166 | 128 | <artifactId>maven-surefire-plugin</artifactId>
|
167 |
| - <version>${maven-surefire-plugin-version}</version> |
168 | 129 | <configuration>
|
169 | 130 | <skipTests>true</skipTests>
|
170 | 131 | </configuration>
|
171 | 132 | </plugin>
|
172 | 133 | <plugin>
|
173 | 134 | <groupId>org.apache.maven.plugins</groupId>
|
174 | 135 | <artifactId>maven-jar-plugin</artifactId>
|
175 |
| - <version>${maven-jar-plugin-version}</version> |
176 | 136 | </plugin>
|
177 | 137 | <plugin>
|
178 | 138 | <groupId>org.apache.maven.plugins</groupId>
|
179 | 139 | <artifactId>maven-pmd-plugin</artifactId>
|
180 |
| - <version>${maven-pmd-plugin-version}</version> |
181 | 140 | </plugin>
|
182 | 141 | <plugin>
|
183 | 142 | <groupId>org.apache.maven.plugins</groupId>
|
184 | 143 | <artifactId>maven-site-plugin</artifactId>
|
185 |
| - <version>${maven-site-plugin-version}</version> |
186 | 144 | </plugin>
|
187 | 145 | <plugin>
|
188 | 146 | <groupId>org.apache.maven.plugins</groupId>
|
189 | 147 | <artifactId>maven-clean-plugin</artifactId>
|
190 |
| - <version>${maven-clean-plugin-version}</version> |
191 | 148 | </plugin>
|
192 | 149 | <plugin>
|
193 | 150 | <groupId>org.apache.maven.plugins</groupId>
|
194 | 151 | <artifactId>maven-checkstyle-plugin</artifactId>
|
195 |
| - <version>${maven-checkstyle-plugin-version}</version> |
196 | 152 | </plugin>
|
197 | 153 | <plugin>
|
198 | 154 | <groupId>org.apache.maven.plugins</groupId>
|
199 | 155 | <artifactId>maven-install-plugin</artifactId>
|
200 |
| - <version>${maven-install-plugin-version}</version> |
201 | 156 | </plugin>
|
202 | 157 | <plugin>
|
203 | 158 | <groupId>org.apache.maven.plugins</groupId>
|
204 | 159 | <artifactId>maven-deploy-plugin</artifactId>
|
205 |
| - <version>${maven-deploy-plugin-version}</version> |
206 | 160 | </plugin>
|
207 | 161 | <plugin>
|
208 | 162 | <groupId>com.github.spotbugs</groupId>
|
209 | 163 | <artifactId>spotbugs-maven-plugin</artifactId>
|
210 |
| - <version>${spotbugs-maven-plugin-version}</version> |
211 | 164 | </plugin>
|
212 | 165 | <plugin>
|
213 | 166 | <groupId>org.jacoco</groupId>
|
214 | 167 | <artifactId>jacoco-maven-plugin</artifactId>
|
215 |
| - <version>${jacoco.version}</version> |
216 | 168 | </plugin>
|
217 | 169 | <plugin>
|
218 | 170 | <groupId>org.codehaus.mojo</groupId>
|
219 | 171 | <artifactId>exec-maven-plugin</artifactId>
|
220 |
| - <version>1.6.0</version> |
221 | 172 | <executions>
|
222 | 173 | <execution>
|
223 | 174 | <goals>
|
|
246 | 197 | <plugin>
|
247 | 198 | <groupId>org.codehaus.mojo</groupId>
|
248 | 199 | <artifactId>build-helper-maven-plugin</artifactId>
|
249 |
| - <version>3.0.0</version> |
250 | 200 | <executions>
|
251 | 201 | <execution>
|
252 | 202 | <id>add-test-source</id>
|
|
280 | 230 | <plugin>
|
281 | 231 | <groupId>org.apache.maven.plugins</groupId>
|
282 | 232 | <artifactId>maven-failsafe-plugin</artifactId>
|
283 |
| - <version>${maven-failsafe-plugin-version}</version> |
284 | 233 | <configuration>
|
285 | 234 | <argLine>
|
286 | 235 | --illegal-access=permit
|
|
0 commit comments