mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
jelastic build profile
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -6,6 +6,7 @@ java_pid*
|
|||||||
|
|
||||||
# Maven build directory
|
# Maven build directory
|
||||||
target
|
target
|
||||||
|
deployments/ROOT.war
|
||||||
|
|
||||||
# Eclipse files
|
# Eclipse files
|
||||||
.project
|
.project
|
||||||
|
|||||||
27
pom.xml
27
pom.xml
@@ -379,5 +379,32 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</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>
|
</profiles>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
Reference in New Issue
Block a user