|
13 | 13 |
|
14 | 14 | <name>Exec Maven Plugin</name>
|
15 | 15 | <description>A plugin to allow execution of system and Java programs</description>
|
16 |
| - <url>http://www.mojohaus.org/exec-maven-plugin</url> |
| 16 | + <url>https://www.mojohaus.org/exec-maven-plugin</url> |
17 | 17 | <inceptionYear>2005</inceptionYear>
|
| 18 | + |
18 | 19 | <prerequisites>
|
19 | 20 | <maven>${mavenVersion}</maven>
|
20 | 21 | </prerequisites>
|
21 |
| - <issueManagement> |
22 |
| - <system>GitHub</system> |
23 |
| - <url>https://github.com/mojohaus/exec-maven-plugin/issues/</url> |
24 |
| - </issueManagement> |
25 |
| - <ciManagement> |
26 |
| - <system>Travis-CI</system> |
27 |
| - <url>https://travis-ci.org/mojohaus/exec-maven-plugin</url> |
28 |
| - </ciManagement> |
29 | 22 |
|
30 | 23 | <developers>
|
31 | 24 | <developer>
|
|
62 | 55 |
|
63 | 56 | <timezone>Europe/Berlin</timezone>
|
64 | 57 | </developer>
|
| 58 | + <developer> |
| 59 | + <id>sjaranowski</id> |
| 60 | + <name>Slawomir Jaranowski</name> |
| 61 | + |
| 62 | + <timezone>Europe/Warsaw</timezone> |
| 63 | + </developer> |
65 | 64 | </developers>
|
66 | 65 |
|
67 | 66 | <contributors>
|
|
94 | 93 | <licenses>
|
95 | 94 | <license>
|
96 | 95 | <name>Apache License 2</name>
|
97 |
| - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 96 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
98 | 97 | <distribution>repo</distribution>
|
99 | 98 | </license>
|
100 | 99 | </licenses>
|
101 | 100 |
|
102 | 101 | <scm>
|
103 | 102 | <connection>scm:git:https://github.com/mojohaus/exec-maven-plugin.git</connection>
|
104 | 103 | < developerConnection>scm:git:ssh:// [email protected]/mojohaus/exec-maven-plugin.git</ developerConnection>
|
105 |
| - <url>https://github.com/mojohaus/exec-maven-plugin</url> |
| 104 | + <url>https://github.com/mojohaus/exec-maven-plugin/tree/master</url> |
106 | 105 | <tag>HEAD</tag>
|
107 | 106 | </scm>
|
108 | 107 |
|
|
111 | 110 | <groupId>org.apache.maven</groupId>
|
112 | 111 | <artifactId>maven-model</artifactId>
|
113 | 112 | <version>${mavenVersion}</version>
|
| 113 | + <scope>provided</scope> |
114 | 114 | </dependency>
|
115 | 115 | <dependency>
|
116 | 116 | <groupId>org.apache.maven</groupId>
|
117 | 117 | <artifactId>maven-artifact</artifactId>
|
118 | 118 | <version>${mavenVersion}</version>
|
| 119 | + <scope>provided</scope> |
119 | 120 | </dependency>
|
120 | 121 | <dependency>
|
121 | 122 | <groupId>org.apache.maven</groupId>
|
122 | 123 | <artifactId>maven-core</artifactId>
|
123 | 124 | <version>${mavenVersion}</version>
|
| 125 | + <scope>provided</scope> |
124 | 126 | </dependency>
|
125 | 127 |
|
126 | 128 | <dependency>
|
127 | 129 | <groupId>org.apache.maven</groupId>
|
128 | 130 | <artifactId>maven-plugin-api</artifactId>
|
129 | 131 | <version>${mavenVersion}</version>
|
| 132 | + <scope>provided</scope> |
130 | 133 | </dependency>
|
131 | 134 | <dependency>
|
132 | 135 | <groupId>org.codehaus.plexus</groupId>
|
|
137 | 140 | <dependency>
|
138 | 141 | <groupId>org.apache.maven.plugin-tools</groupId>
|
139 | 142 | <artifactId>maven-plugin-annotations</artifactId>
|
140 |
| - <version>3.6.4</version> |
141 | 143 | <scope>provided</scope>
|
142 | 144 | </dependency>
|
143 | 145 |
|
|
188 | 190 | <groupId>org.slf4j</groupId>
|
189 | 191 | <artifactId>slf4j-simple</artifactId>
|
190 | 192 | <version>${slf4j.version}</version>
|
| 193 | + <scope>test</scope> |
191 | 194 | </dependency>
|
192 | 195 | </dependencies>
|
193 | 196 |
|
|
201 | 204 | <build>
|
202 | 205 | <pluginManagement>
|
203 | 206 | <plugins>
|
204 |
| - <plugin> |
205 |
| - <groupId>org.apache.maven.plugins</groupId> |
206 |
| - <artifactId>maven-compiler-plugin</artifactId> |
207 |
| - <version>3.10.1</version> |
208 |
| - </plugin> |
209 | 207 | <plugin>
|
210 | 208 | <groupId>org.apache.maven.plugins</groupId>
|
211 | 209 | <artifactId>maven-javadoc-plugin</artifactId>
|
212 |
| - <version>3.4.0</version> |
213 | 210 | <configuration>
|
214 | 211 | <detectLinks>false</detectLinks>
|
215 | 212 | <detectJavaApiLink>false</detectJavaApiLink>
|
216 | 213 | <detectOfflineLinks>false</detectOfflineLinks>
|
217 | 214 | </configuration>
|
218 | 215 | </plugin>
|
219 |
| - <plugin> |
220 |
| - <groupId>org.apache.maven.plugins</groupId> |
221 |
| - <artifactId>maven-gpg-plugin</artifactId> |
222 |
| - <version>3.0.1</version> |
223 |
| - <configuration> |
224 |
| - <!-- Temporary solution to get a release out using gpg version 1 --> |
225 |
| - <useAgent>false</useAgent> |
226 |
| - </configuration> |
227 |
| - </plugin> |
228 | 216 | <plugin>
|
229 | 217 | <groupId>org.apache.maven.plugins</groupId>
|
230 | 218 | <artifactId>maven-plugin-plugin</artifactId>
|
|
242 | 230 | </plugin>
|
243 | 231 | </plugins>
|
244 | 232 | </pluginManagement>
|
| 233 | + |
245 | 234 | <plugins>
|
246 | 235 | <plugin>
|
247 | 236 | <groupId>org.codehaus.mojo</groupId>
|
248 | 237 | <artifactId>animal-sniffer-maven-plugin</artifactId>
|
249 |
| - <version>1.21</version> |
250 | 238 | <executions>
|
251 | 239 | <execution>
|
252 | 240 | <goals>
|
|
281 | 269 | <plugin>
|
282 | 270 | <groupId>org.apache.maven.plugins</groupId>
|
283 | 271 | <artifactId>maven-dependency-plugin</artifactId>
|
284 |
| - <version>3.3.0</version> |
285 | 272 | <executions>
|
286 | 273 | <execution>
|
287 | 274 | <id>copy-test-deps</id>
|
|
365 | 352 | <plugin>
|
366 | 353 | <groupId>org.apache.maven.plugins</groupId>
|
367 | 354 | <artifactId>maven-invoker-plugin</artifactId>
|
368 |
| - <version>3.3.0</version> |
369 | 355 | <configuration>
|
370 | 356 | <addTestClassPath>true</addTestClassPath>
|
371 | 357 | <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
|
375 | 361 | <preBuildHookScript>setup</preBuildHookScript>
|
376 | 362 | <postBuildHookScript>verify</postBuildHookScript>
|
377 | 363 | <settingsFile>src/it/mrm/settings.xml</settingsFile>
|
| 364 | + <parallelThreads>1C</parallelThreads> |
378 | 365 | <properties>
|
379 | 366 | <maven.compiler.source>${mojo.java.target}</maven.compiler.source>
|
380 | 367 | <maven.compiler.target>${mojo.java.target}</maven.compiler.target>
|
381 |
| - <!-- e.g. ensure that Java7 picks up TLSv1.2 when connecting with Central --> |
382 |
| - <https.protocols>${https.protocols}</https.protocols> |
383 | 368 | </properties>
|
384 | 369 | <filterProperties>
|
385 | 370 | <mrm.repository.url>${mrm.repository.url}</mrm.repository.url>
|
|
389 | 374 | <execution>
|
390 | 375 | <goals>
|
391 | 376 | <goal>install</goal>
|
392 |
| - <goal>run</goal> |
| 377 | + <goal>integration-test</goal> |
| 378 | + <goal>verify</goal> |
393 | 379 | </goals>
|
394 | 380 | </execution>
|
395 | 381 | </executions>
|
396 | 382 | </plugin>
|
397 | 383 | <plugin>
|
398 | 384 | <groupId>org.codehaus.mojo</groupId>
|
399 | 385 | <artifactId>mrm-maven-plugin</artifactId>
|
400 |
| - <version>1.4.1</version> |
401 | 386 | <executions>
|
402 | 387 | <execution>
|
403 | 388 | <goals>
|
|
411 | 396 | <mockRepo>
|
412 | 397 | <source>src/it/mrm/repository</source>
|
413 | 398 | </mockRepo>
|
| 399 | + <localRepo> |
| 400 | + <source>${project.build.directory}/local-repo</source> |
| 401 | + </localRepo> |
414 | 402 | <proxyRepo />
|
415 | 403 | </repositories>
|
416 | 404 | </configuration>
|
|
0 commit comments