mirror of https://github.com/apache/jclouds.git
switched to standard resource filtering
git-svn-id: http://jclouds.googlecode.com/svn/trunk@1080 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
parent
1ccd105c12
commit
d8eb1a71d2
|
@ -102,22 +102,17 @@
|
|||
<finalName>${project.artifactId}</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>bakersoftware</groupId>
|
||||
<artifactId>maven-replacer-plugin</artifactId>
|
||||
<version>0.0.9</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>compile</phase>
|
||||
<goals>
|
||||
<goal>replace</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<file>target/${project.artifactId}/WEB-INF/appengine-web.xml</file>
|
||||
<token>@APPLICATION@</token>
|
||||
<value>${appengine.applicationid}</value>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<configuration>
|
||||
<webResources>
|
||||
<resource>
|
||||
<directory>src/main/appengine</directory>
|
||||
<targetPath>WEB-INF/</targetPath>
|
||||
<filtering>true</filtering>
|
||||
</resource>
|
||||
</webResources>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
====================================================================
|
||||
-->
|
||||
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
|
||||
<application>@APPLICATION@</application>
|
||||
<application>${appengine.applicationid}</application>
|
||||
<version>1</version>
|
||||
<system-properties>
|
||||
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties" />
|
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
|
||||
# Set the default logging level for all loggers to WARNING
|
||||
.level = WARNING
|
||||
.level = INFO
|
||||
|
||||
# Set the default logging level for ORM, specifically, to WARNING
|
||||
org.jclouds.level=INFO
|
Loading…
Reference in New Issue