1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Description: some changes in the configuration of build plugins:
- omitting the manifest file in pom.xml, it is managed by javahelper;
- adding the "tests" classifier for the test-jar.
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2023-08-22
--- a/pom.xml
+++ b/pom.xml
@@ -139,14 +139,6 @@
</configuration>
</plugin>
<plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
- </archive>
- </configuration>
- </plugin>
- <plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.3</version>
--- a/modules/okhttp/pom.xml
+++ b/modules/okhttp/pom.xml
@@ -33,7 +33,7 @@
<groupId>${project.groupId}</groupId>
<artifactId>failsafe</artifactId>
<version>${project.version}</version>
- <type>test-jar</type>
+ <classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
--- a/modules/retrofit/pom.xml
+++ b/modules/retrofit/pom.xml
@@ -33,7 +33,7 @@
<groupId>${project.groupId}</groupId>
<artifactId>failsafe</artifactId>
<version>${project.version}</version>
- <type>test-jar</type>
+ <classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
|