[P2play-commit] SF.net SVN: p2play: [53] trunk/P2Play
Status: Pre-Alpha
Brought to you by:
tisoft
|
From: <ti...@us...> - 2007-06-05 19:45:11
|
Revision: 53
http://p2play.svn.sourceforge.net/p2play/?rev=53&view=rev
Author: tisoft
Date: 2007-06-05 11:48:57 -0700 (Tue, 05 Jun 2007)
Log Message:
-----------
added distributionManagment
Modified Paths:
--------------
trunk/P2Play/pom.xml
trunk/P2PlayBoot/pom.xml
Modified: trunk/P2Play/pom.xml
===================================================================
--- trunk/P2Play/pom.xml 2007-03-23 20:23:47 UTC (rev 52)
+++ trunk/P2Play/pom.xml 2007-06-05 18:48:57 UTC (rev 53)
@@ -1,46 +1,68 @@
<?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>P2Play</groupId>
- <artifactId>P2Play</artifactId>
- <version>0.0.1</version>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javolution</groupId>
- <artifactId>javolution</artifactId>
- <version>4.2.6</version>
- </dependency>
- <dependency>
- <groupId>pnuts</groupId>
- <artifactId>pnuts</artifactId>
- <version>1.2-BETA</version>
- </dependency>
- <dependency>
- <groupId>jdom</groupId>
- <artifactId>jdom</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>P2Play</groupId>
- <artifactId>P2PlayBoot</artifactId>
- <version>0.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.thoughtworks.xstream</groupId>
- <artifactId>xstream</artifactId>
- <version>1.2.1</version>
- </dependency>
- </dependencies>
+<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>org.p2play</groupId>
+ <artifactId>P2Play</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>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>javolution</groupId>
+ <artifactId>javolution</artifactId>
+ <version>4.2.6</version>
+ </dependency>
+ <dependency>
+ <groupId>pnuts</groupId>
+ <artifactId>pnuts</artifactId>
+ <version>1.2-BETA</version>
+ </dependency>
+ <dependency>
+ <groupId>jdom</groupId>
+ <artifactId>jdom</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.p2play</groupId>
+ <artifactId>P2PlayBoot</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>com.thoughtworks.xstream</groupId>
+ <artifactId>xstream</artifactId>
+ <version>1.2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
Modified: trunk/P2PlayBoot/pom.xml
===================================================================
--- trunk/P2PlayBoot/pom.xml 2007-03-23 20:23:47 UTC (rev 52)
+++ trunk/P2PlayBoot/pom.xml 2007-06-05 18:48:57 UTC (rev 53)
@@ -1,32 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
- <modelVersion>4.0.0</modelVersion>
- <groupId>P2Play</groupId>
- <artifactId>P2PlayBoot</artifactId>
- <version>0.0.1</version>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>commons-vfs</groupId>
- <artifactId>commons-vfs</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>FreePastry</groupId>
- <artifactId>FreePastry</artifactId>
- <version>2.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
-
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.p2play</groupId>
+ <artifactId>P2PlayBoot</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>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>commons-vfs</groupId>
+ <artifactId>commons-vfs</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>de.tisoft.maven.freepastry</groupId>
+ <artifactId>FreePastry</artifactId>
+ <version>2.1-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|