jelastic build profile

This commit is contained in:
Athou
2013-04-04 09:23:34 +02:00
parent a3194c7354
commit 19ab1810ce
2 changed files with 28 additions and 0 deletions

1
.gitignore vendored
View File

@@ -6,6 +6,7 @@ java_pid*
# Maven build directory
target
deployments/ROOT.war
# Eclipse files
.project

27
pom.xml
View File

@@ -379,5 +379,32 @@
</plugins>
</build>
</profile>
<profile>
<id>jelastic</id>
<properties>
<jpa.datasource.name>java:openejb/Resource/MySQL</jpa.datasource.name>
<jpa.show_sql>false</jpa.show_sql>
</properties>
<build>
<finalName>commafeed</finalName>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.14</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<outputDirectory>deployments</outputDirectory>
<warName>ROOT</warName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>