From e9f170f85c2978ed515c5cd4e28864fbe9dd9d28 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Ckpepper=E2=80=9D?= <kp11@sanger.ac.uk>
Date: Wed, 3 Oct 2018 16:12:51 +0100
Subject: [PATCH] Added missing local ibatis jar

---
 pom.xml | 21 ++++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5bf716cb9..7ccd710a5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -380,7 +380,7 @@ Artemis is written in Java, and is available for UNIX, Macintosh and Windows sys
 			    <executions>
 			        <execution>
 			        		<id>install-biojava-jar</id>
-			            <phase>clean</phase>
+			            <phase>initialize</phase>
 			            <goals>
 			                <goal>install-file</goal>
 			            </goals>
@@ -395,7 +395,7 @@ Artemis is written in Java, and is available for UNIX, Macintosh and Windows sys
 			        </execution>
 			        <execution>
 			        		<id>install-jemalign-jar</id>
-			            <phase>clean</phase>
+			            <phase>initialize</phase>
 			            <goals>
 			                <goal>install-file</goal>
 			            </goals>
@@ -412,7 +412,7 @@ Artemis is written in Java, and is available for UNIX, Macintosh and Windows sys
 			        <!--  NEEDS UPGRADE.... -->
 			        <execution>
 			        		<id>install-j2ssh-core-jar</id>
-			            <phase>clean</phase>
+			            <phase>initialize</phase>
 			            <goals>
 			                <goal>install-file</goal>
 			            </goals>
@@ -426,6 +426,21 @@ Artemis is written in Java, and is available for UNIX, Macintosh and Windows sys
 			            </configuration>
 			        </execution>
 			        
+			        <execution>
+			        		<id>install-ibatis-jar</id>
+			            <phase>initialize</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>
 			
-- 
GitLab