Skip to content
Snippets Groups Projects
Commit 6fbd343b authored by Vincent Massol's avatar Vincent Massol
Browse files

XWIKI-1393: SVN reorganization to take into account the different XWiki products

git-svn-id: https://svn.xwiki.org/svnroot/xwiki/xwiki-platform/xwiki-tools/trunk@3695 f329d543-caf0-0310-9063-dda96c69346f
parent c92698a0
No related branches found
No related tags found
No related merge requests found
...@@ -22,37 +22,42 @@ ...@@ -22,37 +22,42 @@
* *
--> -->
<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"> <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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.xpn.xwiki.platform</groupId> <groupId>com.xpn.xwiki</groupId>
<artifactId>xwiki-build-tools</artifactId> <artifactId>xwiki</artifactId>
<version>1.1-SNAPSHOT</version> <version>1-SNAPSHOT</version>
</parent> </parent>
<artifactId>xwiki-build-xar-plugin</artifactId> <artifactId>xwiki-tools</artifactId>
<name>XWiki Platform - Tools - Build - XAR Plugin</name> <name>XWiki Tools</name>
<packaging>maven-plugin</packaging> <version>1.0-SNAPSHOT</version>
<description>XWiki Platform - Tools - Build - XAR Plugin</description> <packaging>pom</packaging>
<dependencies> <description>XWiki Tools</description>
<dependency> <scm>
<groupId>org.apache.maven</groupId> <connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/xwiki/xwiki-tools/trunk</connection>
<artifactId>maven-plugin-api</artifactId> <developerConnection>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/xwiki/xwiki-tools/trunk</developerConnection>
<version>2.0</version> <url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/xwiki/xwiki-tools/trunk</url>
</dependency> </scm>
<dependency> <modules>
<groupId>org.apache.maven</groupId> <module>build-tools</module>
<artifactId>maven-archiver</artifactId> <module>packager</module>
<version>2.2</version> </modules>
</dependency> <!-- Note: Even though this repository is defined in the com.xpn.xwiki:xwiki module we still need
<dependency> to define it here because if com.xpn.xwiki:xwiki is not in the local repository we want to
<groupId>org.codehaus.plexus</groupId> fetch it from the remote repo to provide a seamless build experience -->
<artifactId>plexus-utils</artifactId> <repositories>
<version>1.4</version> <repository>
</dependency> <id>xwiki</id>
<dependency> <name>XWiki Maven2 Remote Repository</name>
<groupId>org.apache.maven</groupId> <url>http://maven.xwiki.org</url>
<artifactId>maven-artifact</artifactId> <releases>
<version>2.0</version> <enabled>true</enabled>
</dependency> </releases>
</dependencies> <snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project> </project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment