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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
Description: avoid installing embedded jars as we removed them
Author relies on jars that are embedded in their source archive. Instead, we
use the ones that are packaged in Debian.
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2020-09-04
--- a/pom.xml
+++ b/pom.xml
@@ -382,76 +382,6 @@
</executions>
</plugin>
- <!-- ====================== Install essential old jars into the local Maven repo ======================= -->
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <version>2.5.2</version>
- <executions>
- <execution>
- <id>install-biojava-jar</id>
- <phase>validate</phase>
- <goals>
- <goal>install-file</goal>
- </goals>
- <configuration>
- <groupId>org.biojava</groupId>
- <artifactId>biojava</artifactId>
- <version>1.6</version>
- <packaging>jar</packaging>
- <file>${project.basedir}/lib/biojava.jar</file>
- <generatePom>true</generatePom>
- </configuration>
- </execution>
- <execution>
- <id>install-jemalign-jar</id>
- <phase>validate</phase>
- <goals>
- <goal>install-file</goal>
- </goals>
- <configuration>
- <groupId>org.emboss</groupId>
- <artifactId>jemboss</artifactId>
- <version>1.0</version>
- <packaging>jar</packaging>
- <file>${project.basedir}/lib/jemAlign.jar</file>
- <generatePom>true</generatePom>
- </configuration>
- </execution>
- <execution>
- <id>install-j2ssh-core-jar</id>
- <phase>validate</phase>
- <goals>
- <goal>install-file</goal>
- </goals>
- <configuration>
- <groupId>com.sshtools</groupId>
- <artifactId>j2ssh-core</artifactId>
- <version>0.2.9</version>
- <packaging>jar</packaging>
- <file>${project.basedir}/lib/j2ssh-core.jar</file>
- <generatePom>true</generatePom>
- </configuration>
- </execution>
- <execution>
- <id>install-ibatis-jar</id>
- <phase>validate</phase>
- <goals>
- <goal>install-file</goal>
- </goals>
- <configuration>
- <groupId>com.ibatis</groupId>
- <artifactId>ibatis</artifactId>
- <version>2.3.4.726</version>
- <packaging>jar</packaging>
- <file>${project.basedir}/lib/ibatis-2.3.4.726.jar</file>
- <generatePom>true</generatePom>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
<!-- ========= Store release version number to the Artemis splash screen version file ======== -->
<plugin>
|