From 28523b2a2f38f1f88f782dcfc433ecfa6303f1b3 Mon Sep 17 00:00:00 2001 From: srosse <none@none> Date: Mon, 31 Jul 2017 09:31:12 +0200 Subject: [PATCH] OO-2853: move to https to download tomcat in selenium tests, update graphene, update ant plugin --- pom.xml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pom.xml b/pom.xml index 01fefe5c488..8089884104f 100644 --- a/pom.xml +++ b/pom.xml @@ -71,7 +71,7 @@ <org.infinispan.version>8.2.5.Final</org.infinispan.version> <lucene.version>4.8.0</lucene.version> <version.selenium>3.4.0</version.selenium> - <version.drone>2.2.0</version.drone> + <version.drone>2.3.1</version.drone> <activemq.version>5.11.1</activemq.version> <qtiworks.version>1.0.4</qtiworks.version> @@ -1298,7 +1298,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> - <version>1.7</version> + <version>1.8</version> <executions> <!-- Copy the notice.txt file --> <execution> @@ -1316,18 +1316,18 @@ </execution> <!-- Download tomcat for integration test --> <execution> - <phase>pre-integration-test</phase> - <goals> - <goal>run</goal> - </goals> - <configuration> - <tasks> - <mkdir dir="${project.build.directory}/downloads" /> - <get src="http://nexus.openolat.org/nexus/content/repositories/openolat/org/apache/tomcat/apache-tomcat-arq/8.0.24/apache-tomcat-arq-8.0.24.zip" dest="${project.build.directory}/downloads" verbose="true" skipexisting="true" /> - <unzip src="${project.build.directory}/downloads/apache-tomcat-arq-8.0.24.zip" dest="${project.build.directory}/arq-apache-tomcat-8.0.24" /> - </tasks> - </configuration> - </execution> + <phase>pre-integration-test</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <mkdir dir="${project.build.directory}/downloads" /> + <get src="https://nexus.openolat.org/nexus/content/repositories/openolat/org/apache/tomcat/apache-tomcat-arq/8.0.24/apache-tomcat-arq-8.0.24.zip" dest="${project.build.directory}/downloads" verbose="true" skipexisting="true" /> + <unzip src="${project.build.directory}/downloads/apache-tomcat-arq-8.0.24.zip" dest="${project.build.directory}/arq-apache-tomcat-8.0.24" /> + </target> + </configuration> + </execution> </executions> </plugin> <!-- Unit tests --> @@ -2574,7 +2574,7 @@ <dependency> <groupId>org.jboss.arquillian.graphene</groupId> <artifactId>graphene-webdriver</artifactId> - <version>2.2.1</version> + <version>2.3.0</version> <type>pom</type> <scope>test</scope> </dependency> -- GitLab