[P2play-commit] SF.net SVN: p2play: [70] trunk/parent
Status: Pre-Alpha
Brought to you by:
tisoft
|
From: <ti...@us...> - 2007-08-21 12:06:18
|
Revision: 70
http://p2play.svn.sourceforge.net/p2play/?rev=70&view=rev
Author: tisoft
Date: 2007-08-21 05:06:13 -0700 (Tue, 21 Aug 2007)
Log Message:
-----------
added eclipse plugin project
updated parent pom
Modified Paths:
--------------
trunk/parent/pom.xml
Added Paths:
-----------
trunk/parent/org.p2play.eclipse/
trunk/parent/org.p2play.eclipse/pom.xml
Added: trunk/parent/org.p2play.eclipse/pom.xml
===================================================================
--- trunk/parent/org.p2play.eclipse/pom.xml (rev 0)
+++ trunk/parent/org.p2play.eclipse/pom.xml 2007-08-21 12:06:13 UTC (rev 70)
@@ -0,0 +1,43 @@
+<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>org.p2play.eclipse</artifactId>
+ <name>P2Play Eclipse Enablement</name>
+ <version>0.0.1-SNAPSHOT</version>
+
+ <parent>
+ <groupId>org.p2play</groupId>
+ <artifactId>parent</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+
+ <packaging>pom</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-psteclipse-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>eclipse-plugin</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.p2play</groupId>
+ <artifactId>p2play</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Property changes on: trunk/parent/org.p2play.eclipse/pom.xml
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/parent/pom.xml
===================================================================
--- trunk/parent/pom.xml 2007-08-21 09:28:34 UTC (rev 69)
+++ trunk/parent/pom.xml 2007-08-21 12:06:13 UTC (rev 70)
@@ -1,8 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project>
+<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>parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
+ <modules>
+ <module>boot</module>
+ <module>p2play</module>
+ <module>org.p2play.eclipse</module>
+ </modules>
+
+
+ <repositories>
+ <repository>
+ <id>maven.tisoft.de</id>
+ <url>http://maven.tisoft.de/repository</url>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>maven.tisoft.de</id>
+ <url>http://maven.tisoft.de/repository</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <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>
+ <version>1.0-beta-2</version>
+ </extension>
+ </extensions>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|