Created
December 11, 2014 08:01
-
-
Save emag/8cd883835629519ab842 to your computer and use it in GitHub Desktop.
for arquillian-cube
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <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/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>arquillian-cube</groupId> | |
| <artifactId>basic</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| <packaging>war</packaging> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <version.org.jboss.arquillian.arquillian-bom>1.1.5.Final</version.org.jboss.arquillian.arquillian-bom> | |
| <version.org.arquillian.cube>1.0.0.Alpha2</version.org.arquillian.cube> | |
| <version.junit>4.11</version.junit> | |
| <version.maven-compiler-plugin>3.2</version.maven-compiler-plugin> | |
| <version.maven-war-plugin>2.5</version.maven-war-plugin> | |
| </properties> | |
| <repositories> | |
| <repository> | |
| <id>jboss-public</id> | |
| <name>JBoss Public Maven Repository Group</name> | |
| <url>https://repository.jboss.org/nexus/content/groups/public/</url> | |
| <layout>default</layout> | |
| <releases> | |
| <updatePolicy>never</updatePolicy> | |
| </releases> | |
| <snapshots> | |
| <enabled>true</enabled> | |
| </snapshots> | |
| </repository> | |
| </repositories> | |
| <pluginRepositories> | |
| <pluginRepository> | |
| <id>jboss-public</id> | |
| <name>JBoss Public Maven Repository Group</name> | |
| <url>https://repository.jboss.org/nexus/content/groups/public/</url> | |
| <layout>default</layout> | |
| <releases> | |
| <updatePolicy>never</updatePolicy> | |
| </releases> | |
| <snapshots> | |
| <enabled>true</enabled> | |
| </snapshots> | |
| </pluginRepository> | |
| </pluginRepositories> | |
| <dependencyManagement> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.jboss.arquillian</groupId> | |
| <artifactId>arquillian-bom</artifactId> | |
| <version>${version.org.jboss.arquillian.arquillian-bom}</version> | |
| <type>pom</type> | |
| <scope>import</scope> | |
| </dependency> | |
| </dependencies> | |
| </dependencyManagement> | |
| <dependencies> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>${version.junit}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.jboss.arquillian.junit</groupId> | |
| <artifactId>arquillian-junit-container</artifactId> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.arquillian.cube</groupId> | |
| <artifactId>arquillian-cube-docker</artifactId> | |
| <version>${version.org.arquillian.cube}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <finalName>${project.artifactId}</finalName> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>${version.maven-compiler-plugin}</version> | |
| <configuration> | |
| <source>1.8</source> | |
| <target>1.8</target> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-war-plugin</artifactId> | |
| <version>${version.maven-war-plugin}</version> | |
| <configuration> | |
| <failOnMissingWebXml>false</failOnMissingWebXml> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment