|
From: <ian...@us...> - 2007-09-03 22:14:08
|
Revision: 351
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=351&view=rev
Author: iansmith
Date: 2007-09-03 15:13:54 -0700 (Mon, 03 Sep 2007)
Log Message:
-----------
more pom hacking
Modified Paths:
--------------
maven/trunk/ogoglio-server/pom.xml
Modified: maven/trunk/ogoglio-server/pom.xml
===================================================================
--- maven/trunk/ogoglio-server/pom.xml 2007-09-03 22:13:29 UTC (rev 350)
+++ maven/trunk/ogoglio-server/pom.xml 2007-09-03 22:13:54 UTC (rev 351)
@@ -14,19 +14,6 @@
<artifactId>ogoglio-server</artifactId>
<packaging>war</packaging>
- <!-- mildly questionable: with this profile active by default, you don't get tests run -->
- <!-- when you do 'install' in this directory... this is b/c often you don't want to destroy -->
- <!-- the db (which the tests do) when doing server development... comment this out to get -->
- <!-- the maven default behavior -->
- <profiles>
- <profile>
- <id>server-side</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- </profiles>
-
<!-- -->
<!-- BUILD -->
<!-- -->
@@ -189,48 +176,6 @@
</execution>
</executions>
</plugin>
- <!-- CARGO CONFIG:INSTALL TO RUNNING SERVER -->
- <plugin>
- <groupId>org.codehaus.cargo</groupId>
- <artifactId>cargo-maven2-plugin</artifactId>
- <version>0.3-SNAPSHOT</version>
- <executions>
- <execution>
- <id>server-side</id>
- <inherited>true</inherited>
- <phase>install</phase>
- <goals>
- <goal>deploy</goal>
- </goals>
- <configuration>
- <container>
- <containerId>tomcat5x</containerId>
- </container>
- <!-- Configuration to use with the container -->
- <configuration>
- <type>existing</type>
- <home>${ogoglio.tmp.tomcat5x}</home>
- </configuration>
- <deployables>
- <deployable>
- <properties>
- <context>
- ${pom.artifactId}
- </context>
- </properties>
- </deployable>
- </deployables>
-
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
</plugins>
</build>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|