Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge branch 'release' into integration/master
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Apr 16, 2015
2 parents c63409a + 8e11a04 commit 06db109
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pom.xml
Expand Up @@ -1428,6 +1428,7 @@
<mojarra.module.name>wildfly-${module.wildfly.version}-module-mojarra-${mojarra.module.version}.zip</mojarra.module.name>
<hibernate.module.version>4.2.15.Final</hibernate.module.version>
<hibernate.module.name>wildfly-${module.wildfly.version}-module-hibernate-main-${hibernate.module.version}.zip</hibernate.module.name>
<undertow.module.name>wildfly-9.0.0.Beta2-modules-undertow.zip</undertow.module.name>
</properties>

<build>
Expand All @@ -1448,10 +1449,15 @@
<configuration>
<target unless="skipITs">
<mkdir dir="${download.dir}" />

<get src="http://sourceforge.net/projects/zanata/files/wildfly/${mojarra.module.name}/download" dest="${download.dir}/${mojarra.module.name}" skipexisting="true" />
<get src="http://sourceforge.net/projects/zanata/files/wildfly/${hibernate.module.name}/download" dest="${download.dir}/${hibernate.module.name}" skipexisting="true" />
<unzip src="${download.dir}/${mojarra.module.name}" dest="${appserver.home}" />

<get src="http://sourceforge.net/projects/zanata/files/wildfly/${hibernate.module.name}/download" dest="${download.dir}/${hibernate.module.name}" skipexisting="true" />
<unzip src="${download.dir}/${hibernate.module.name}" dest="${appserver.home}" />

<get src="http://sourceforge.net/projects/zanata/files/wildfly/${undertow.module.name}/download" dest="${download.dir}/${undertow.module.name}" skipexisting="true" />
<unzip src="${download.dir}/${undertow.module.name}" dest="${appserver.home}" />
</target>
</configuration>
</execution>
Expand Down

0 comments on commit 06db109

Please sign in to comment.