[P2play-commit] SF.net SVN: p2play: [54] P2PlayLegacy
Status: Pre-Alpha
Brought to you by:
tisoft
|
From: <ti...@us...> - 2007-07-02 09:53:44
|
Revision: 54
http://p2play.svn.sourceforge.net/p2play/?rev=54&view=rev
Author: tisoft
Date: 2007-07-02 02:53:43 -0700 (Mon, 02 Jul 2007)
Log Message:
-----------
added maven2 support
Modified Paths:
--------------
P2PlayLegacy/.classpath
P2PlayLegacy/.project
Added Paths:
-----------
P2PlayLegacy/pom.xml
Modified: P2PlayLegacy/.classpath
===================================================================
--- P2PlayLegacy/.classpath 2007-06-05 18:48:57 UTC (rev 53)
+++ P2PlayLegacy/.classpath 2007-07-02 09:53:43 UTC (rev 54)
@@ -2,6 +2,6 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
- <classpathentry combineaccessrules="false" kind="src" path="/P2Play"/>
+ <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Modified: P2PlayLegacy/.project
===================================================================
--- P2PlayLegacy/.project 2007-06-05 18:48:57 UTC (rev 53)
+++ P2PlayLegacy/.project 2007-07-02 09:53:43 UTC (rev 54)
@@ -10,8 +10,14 @@
<arguments>
</arguments>
</buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
</natures>
</projectDescription>
Added: P2PlayLegacy/pom.xml
===================================================================
--- P2PlayLegacy/pom.xml (rev 0)
+++ P2PlayLegacy/pom.xml 2007-07-02 09:53:43 UTC (rev 54)
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.p2play</groupId>
+ <artifactId>P2PlayLegacy</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <distributionManagement>
+ <repository>
+ <id>maven.tisoft.de</id>
+ <url>ftp://maven.tisoft.de/repository</url>
+ </repository>
+ </distributionManagement>
+
+ <build>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-ftp</artifactId>
+ </extension>
+ </extensions>
+ <sourceDirectory>${basedir}/src</sourceDirectory>
+ <resources>
+ <resource>
+ <directory>${basedir}/jars/freepastry</directory>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.p2play</groupId>
+ <artifactId>P2Play</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+
+</project>
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|