forked from Archives/Athou_commafeed
73 lines
2.1 KiB
XML
Executable File
73 lines
2.1 KiB
XML
Executable File
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>cf</groupId>
|
|
<artifactId>cf</artifactId>
|
|
<packaging>war</packaging>
|
|
<version>1.0</version>
|
|
<name>cf</name>
|
|
<repositories>
|
|
<repository>
|
|
<id>eap</id>
|
|
<url>http://maven.repository.redhat.com/techpreview/all</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>eap</id>
|
|
<url>http://maven.repository.redhat.com/techpreview/all</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.6</maven.compiler.source>
|
|
<maven.compiler.target>1.6</maven.compiler.target>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jboss.spec</groupId>
|
|
<artifactId>jboss-javaee-6.0</artifactId>
|
|
<version>3.0.0.Final-redhat-1</version>
|
|
<type>pom</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<profiles>
|
|
<profile>
|
|
<!-- When built in OpenShift the 'openshift' profile will be used when
|
|
invoking mvn. -->
|
|
<!-- Use this profile for any OpenShift specific customization your app
|
|
will need. -->
|
|
<!-- By default that is to put the resulting archive into the 'deployments'
|
|
folder. -->
|
|
<!-- http://maven.apache.org/guides/mini/guide-building-for-different-environments.html -->
|
|
<id>openshift</id>
|
|
<build>
|
|
<finalName>cf</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>2.1.1</version>
|
|
<configuration>
|
|
<outputDirectory>deployments</outputDirectory>
|
|
<warName>ROOT</warName>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|