|
From: <ian...@us...> - 2007-09-03 03:26:20
|
Revision: 344
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=344&view=rev
Author: iansmith
Date: 2007-09-02 20:26:23 -0700 (Sun, 02 Sep 2007)
Log Message:
-----------
Minor POM hackery to support automagic svn.
Modified Paths:
--------------
maven/trunk/ogoglio/pom.xml
maven/trunk/ogoglio-server/pom.xml
Modified: maven/trunk/ogoglio/pom.xml
===================================================================
--- maven/trunk/ogoglio/pom.xml 2007-09-03 00:22:17 UTC (rev 343)
+++ maven/trunk/ogoglio/pom.xml 2007-09-03 03:26:23 UTC (rev 344)
@@ -10,15 +10,47 @@
<profiles>
<profile>
+ <id>kill-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 KILLING SERVER ONLY -->
+ <configuration>
+ <!-- tomcat 5.5 running on the same machine...-->
+ <container>
+ <containerId>tomcat5x</containerId>
+ <home>${cargo.tomcat5x.home}</home>
+ </container>
+ <!-- tomcat configuration -->
+ <configuration>
+ <type>existing</type>
+ <home>${ogoglio.tmp.tomcat5x}</home>
+ <properties>
+ <cargo.servlet.port>
+ 8080
+ </cargo.servlet.port>
+ </properties>
+ </configuration>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
<id>boot-server</id>
<build>
<plugins>
+ <!-- CARGO INTERACTIONS WITH TOMCAT FOR BOOTING SERVER ONLY -->
<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>${boot-server.wait}</wait>
<!-- tomcat 5.5 running on the same machine...-->
<container>
<containerId>tomcat5x</containerId>
@@ -88,7 +120,24 @@
</snapshotRepository>
</distributionManagement>
+ <ciManagement>
+ <system>continuum</system>
+ <notifiers>
+ <notifier>
+ <type>mail</type>
+ <configuration>
+ <address>co...@tr...</address>
+ </configuration>
+ </notifier>
+ </notifiers>
+ </ciManagement>
+ <scm>
+ <connection>scm:svn:https://ogoglio.svn.sourceforge.net/svnroot/ogoglio/maven/trunk</connection>
+ <developerConnection>scm:svn:https://ogoglio.svn.sourceforge.net/svnroot/ogoglio/maven/trunk</developerConnection>
+ <url>http://ogoglio.svn.sourceforge.net/viewvc/ogoglio/maven/trunk</url>
+ </scm>
+
<build>
<pluginManagement>
<plugins>
Modified: maven/trunk/ogoglio-server/pom.xml
===================================================================
--- maven/trunk/ogoglio-server/pom.xml 2007-09-03 00:22:17 UTC (rev 343)
+++ maven/trunk/ogoglio-server/pom.xml 2007-09-03 03:26:23 UTC (rev 344)
@@ -109,7 +109,7 @@
<executions>
<execution>
<id>copy-applets</id>
- <phase>compile</phase>
+ <phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|