|
From: <ian...@us...> - 2007-09-04 15:32:43
|
Revision: 357
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=357&view=rev
Author: iansmith
Date: 2007-09-04 08:32:46 -0700 (Tue, 04 Sep 2007)
Log Message:
-----------
for cont. int. server
Modified Paths:
--------------
maven/trunk/pom.xml
Modified: maven/trunk/pom.xml
===================================================================
--- maven/trunk/pom.xml 2007-09-04 15:26:50 UTC (rev 356)
+++ maven/trunk/pom.xml 2007-09-04 15:32:46 UTC (rev 357)
@@ -19,6 +19,41 @@
<module>dev-plugins</module>
</modules>
+ <profiles>
+ <profile>
+ <id>boot-server</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.cargo</groupId>
+ <artifactId>cargo-maven2-plugin</artifactId>
+ <version>0.3-SNAPSHOT</version>
+ <!-- CARGO INTERACTIONS WITH TOMCAT FOR BOOTING SERVER ONLY -->
+ <configuration>
+ <wait>true</wait>
+ <!-- tomcat 5.5 running on the same machine...-->
+ <container>
+ <containerId>tomcat5x</containerId>
+ <home>${cargo.tomcat5x.home}</home>
+ <log>${basedir}/tomcat5x.log</log>
+ <output>${basedir}/tomcat5x.out</output>
+ </container>
+ <!-- tomcat configuration -->
+ <configuration>
+ <type>standalone</type>
+ <home>${ogoglio.tmp.tomcat5x}</home>
+ <properties>
+ <cargo.servlet.port>
+ 8080
+ </cargo.servlet.port>
+ </properties>
+ </configuration>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
<ciManagement>
<system>continuum</system>
@@ -44,6 +79,7 @@
</url>
</scm>
+
<build>
<pluginManagement>
<plugins>
@@ -57,5 +93,18 @@
</plugins>
</pluginManagement>
</build>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.12</version>
+ <scope>runtime</scope>
+ <optional>true</optional>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|