Skip to content

Commit

Permalink
Removed dependecy to ant built
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.jboss.org/repos/hibernate/validator/trunk@17200 1b8cb986-b30d-0410-93ca-fae66ebed9b2
  • Loading branch information
hferentschik committed Jul 24, 2009
1 parent af65058 commit 6b1c538
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 118 deletions.
49 changes: 48 additions & 1 deletion hibernate-validator-tck-runner/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>hibernate-validator-parent</artifactId>
<groupId>org.hibernate</groupId>
Expand Down Expand Up @@ -250,5 +252,50 @@
</plugins>
</build>
</profile>
<profile>
<id>setup-jboss-as</id>
<activation>
<property>
<name>setupJBoss</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>initialize</phase>
<configuration>
<tasks>
<property name="jboss.home" value="/opt/java/jboss-5"/>
<property name="deploy.dir" value="${jboss.home}/server/default/deployers/webbeans.deployer"/>
<property name="remote.repo" value="http://repository.jboss.com/maven2"/>
<property name="artifact.version" value="5.2.0.Beta2"/>
<property name="artifact.name"
value="webbeans-jboss-int-deployer-${artifact.version}"/>
<delete dir="${deploy.dir}" failonerror="false"/>
<mkdir dir="${basedir}/target/download"/>
<get src="${remote.repo}/org/jboss/webbeans/integration/webbeans-jboss-int-deployer/${artifact.version}/${artifact.name}.zip"
dest="${basedir}/target/download/${artifact.name}.zip"
verbose="true"
usetimestamp="true"/>
<unzip dest="target" src="${basedir}/target/download/${artifact.name}.zip"/>
<copy todir="${deploy.dir}">
<fileset dir="target/webbeans.deployer">
<include name="**/*"/>
</fileset>
</copy>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
13 changes: 0 additions & 13 deletions hibernate-validator-tck-runner/src/jboss-as/build.properties

This file was deleted.

104 changes: 0 additions & 104 deletions hibernate-validator-tck-runner/src/jboss-as/build.xml

This file was deleted.

Binary file not shown.

0 comments on commit 6b1c538

Please sign in to comment.