You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by st...@apache.org on 2018/01/08 15:25:30 UTC

[4/4] incubator-taverna-server git commit: Avoid explicit dependencies

Avoid explicit dependencies


Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/commit/19b0d1e9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/tree/19b0d1e9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/diff/19b0d1e9

Branch: refs/heads/master
Commit: 19b0d1e92048db6129ffbe76953e64962e54184d
Parents: 7e8dca4
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Mon Jan 8 15:23:08 2018 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Mon Jan 8 15:25:07 2018 +0000

----------------------------------------------------------------------
 pom.xml                       | 25 ++++++++++---------------
 taverna-server-webapp/pom.xml |  7 +------
 2 files changed, 11 insertions(+), 21 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/blob/19b0d1e9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index cdba00f..50bcac0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -245,58 +245,53 @@ executing.</description>
 			<dependency>
 				<groupId>commons-codec</groupId>
 				<artifactId>commons-codec</artifactId>
-				<version>1.8</version>
+				<version>${commons.codec.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>commons-collections</groupId>
 				<artifactId>commons-collections</artifactId>
-				<version>3.2.2</version>
+				<version>${commons.collections.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>commons-dbcp</groupId>
 				<artifactId>commons-dbcp</artifactId>
-				<version>1.4</version>
+				<version>${commons.dbcp.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>commons-io</groupId>
 				<artifactId>commons-io</artifactId>
-				<version>2.3</version>
+				<version>${commons.io.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>commons-lang</groupId>
 				<artifactId>commons-lang</artifactId>
-				<version>2.6</version>
+				<version>${commons.lang.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>commons-logging</groupId>
 				<artifactId>commons-logging</artifactId>
-				<version>1.1.3</version>
+				<version>${commons.logging.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>jaxen</groupId>
 				<artifactId>jaxen</artifactId>
-				<version>1.1.4</version>
-			</dependency>
-			<dependency>
-				<groupId>junit</groupId>
-				<artifactId>junit</artifactId>
-				<version>4.11</version>
-				<scope>test</scope>
+				<version>${jaxen.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>net.sf.mime-util</groupId>
 				<artifactId>mime-util</artifactId>
+				<!-- TODO: Update to https://mvnrepository.com/artifact/eu.medsea.mimeutil/mime-util/2.1.3 -->
 				<version>1.2</version>
 			</dependency>
 			<dependency>
 				<groupId>org.apache.httpcomponents</groupId>
 				<artifactId>httpclient</artifactId>
-				<version>4.3.1</version>
+				<version>${apache.httpclient.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>joda-time</groupId>
 				<artifactId>joda-time</artifactId>
-				<version>2.3</version>
+				<version>${joda-time.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>com.sun.xml.bind</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/blob/19b0d1e9/taverna-server-webapp/pom.xml
----------------------------------------------------------------------
diff --git a/taverna-server-webapp/pom.xml b/taverna-server-webapp/pom.xml
index d4817ba..cd3b703 100644
--- a/taverna-server-webapp/pom.xml
+++ b/taverna-server-webapp/pom.xml
@@ -114,12 +114,7 @@ limitations under the License.
 			<artifactId>spring-test</artifactId>
 			<version>${version.spring}</version>
 			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId><!--$NO-MVN-MAN-VER$-->
-			<scope>test</scope>
-		</dependency>
+		</dependency>		
 		<dependency>
 			<groupId>${project.parent.groupId}</groupId>
 			<artifactId>taverna-server-port-description</artifactId>