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

XTOOLS-2: Separate XAR Handler and XAR plugin into 2 build modules

git-svn-id: https://svn.xwiki.org/svnroot/xwiki/xwiki-platform/xwiki-tools/trunk@3861 f329d543-caf0-0310-9063-dda96c69346f
parent 5bcfe6ce
No related merge requests found
...@@ -31,28 +31,6 @@ ...@@ -31,28 +31,6 @@
</parent> </parent>
<artifactId>xwiki-build-xar-handlers</artifactId> <artifactId>xwiki-build-xar-handlers</artifactId>
<name>XWiki Platform - Tools - Build - XAR Handlers</name> <name>XWiki Platform - Tools - Build - XAR Handlers</name>
<packaging>maven-plugin</packaging> <packaging>jar</packaging>
<description>XWiki Platform - Tools - Build - XAR Handlers (Lifecycle and ArtifactHandler)</description> <description>XWiki Platform - Tools - Build - XAR Handlers (Lifecycle and ArtifactHandler)</description>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-archiver</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
</project> </project>
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<configuration> <configuration>
<phases> <phases>
<process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources> <process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources>
<package>com.xpn.xwiki.platform:xwiki-build-xar-handlers:xar</package> <package>com.xpn.xwiki.platform:xwiki-build-xar-plugin:xar</package>
<install>org.apache.maven.plugins:maven-install-plugin:install</install> <install>org.apache.maven.plugins:maven-install-plugin:install</install>
<deploy>org.apache.maven.plugins:maven-deploy-plugin:deploy</deploy> <deploy>org.apache.maven.plugins:maven-deploy-plugin:deploy</deploy>
</phases> </phases>
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
*
* Copyright 2006-2007, XpertNet SARL, and individual contributors as indicated
* by the contributors.txt.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*
-->
<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>
<parent>
<groupId>com.xpn.xwiki.platform</groupId>
<artifactId>xwiki-build-tools</artifactId>
<version>1.1-SNAPSHOT</version>
</parent>
<artifactId>xwiki-build-xar-plugin</artifactId>
<name>XWiki Platform - Tools - Build - XAR Plugin</name>
<packaging>maven-plugin</packaging>
<description>XWiki Platform - Tools - Build - XAR Plugin</description>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-archiver</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
</project>
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
<description>XWiki Platform - Tools - Build - Parent POM</description> <description>XWiki Platform - Tools - Build - Parent POM</description>
<modules> <modules>
<module>build-verifications</module> <module>build-verifications</module>
<module>build-xar-plugin</module>
<module>build-xar-handlers</module> <module>build-xar-handlers</module>
</modules> </modules>
</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