|
From: <ian...@us...> - 2007-09-03 23:33:10
|
Revision: 355
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=355&view=rev
Author: iansmith
Date: 2007-09-03 16:33:13 -0700 (Mon, 03 Sep 2007)
Log Message:
-----------
egregious pom and directory hacking
Added Paths:
-----------
maven/trunk/pom.xml
Added: maven/trunk/pom.xml
===================================================================
--- maven/trunk/pom.xml (rev 0)
+++ maven/trunk/pom.xml 2007-09-03 23:33:13 UTC (rev 355)
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>com.ogoglio</groupId>
+ <artifactId>ogoglio</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>ogoglio-appdev</module>
+ <module>ogoglio-body-editor-applet</module>
+ <module>ogoglio-common</module>
+ <module>ogoglio-test-applet</module>
+ <module>ogoglio-viewer-applet</module>
+ <module>ogoglio-server</module>
+ <module>ogoglio-integration-test</module>
+ <module>dev-plugins</module>
+ </modules>
+
+
+ <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>
+ <!-- solves the problem with java3d not being able to link due to isolated classloader -->
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <childDelegation>true</childDelegation>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+</project>
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|