Author: vmassol Date: 2007-10-02 12:57:22 +0200 (Tue, 02 Oct 2007) New Revision: 5201
Added: trunks/pom.xml Log: Merged trunks-devs and trunks-users Added: trunks/pom.xml =================================================================== --- trunks/pom.xml (rev 0) +++ trunks/pom.xml 2007-10-02 10:57:22 UTC (rev 5201) @@ -0,0 +1,100 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * See the NOTICE file distributed with this work for additional + * information regarding copyright ownership. + * + * 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</artifactId> + <version>6-SNAPSHOT</version> + <relativePath>xwiki-platform-pom</relativePath> + </parent> + <artifactId>xwiki-externals</artifactId> + <name>XWiki Top Level POM</name> + <!-- We don't use a real version here since we're not releasing this file --> + <version>UNVERSIONED</version> + <packaging>pom</packaging> + <description>XWiki Top Level POM</description> + <profiles> + <profile> + <!-- Everything --> + <id>all</id> + <modules> + <module>xwiki-platform-tools</module> + <module>xwiki-platform-core</module> + <module>xwiki-platform-web</module> + <module>xwiki-platform-plugins</module> + <module>xwiki-platform-applications</module> + <module>xwiki-product-enterprise</module> + <module>xwiki-product-enterprise-manager</module> + <module>xwiki-product-curriki</module> + </modules> + </profile> + <profile> + <!-- XWiki Enterprise --> + <id>xe</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <modules> + <module>xwiki-platform-core</module> + <module>xwiki-platform-web</module> + <module>xwiki-platform-applications</module> + <module>xwiki-product-enterprise</module> + </modules> + </profile> + <profile> + <!-- XWiki Enterprise Manager --> + <id>xem</id> + <modules> + <module>xwiki-platform-applications</module> + <module>xwiki-platform-plugins</module> + <module>xwiki-product-enterprise-manager</module> + </modules> + </profile> + <profile> + <!-- Curriki --> + <id>curriki</id> + <modules> + <module>xwiki-platform-core</module> + <module>xwiki-platform-web</module> + <module>xwiki-product-curriki</module> + </modules> + </profile> + </profiles> + <build> + <!-- This build extension should be located in the modules that require it, namely: + xwiki-platform/xwiki-applications, and all wiki/ modules of the different products. + However there's currently a bug in Maven2 that makes it not work if they're located there. + See http://jira.codehaus.org/browse/MNG-3097. --> + <extensions> + <extension> + <groupId>com.xpn.xwiki.platform</groupId> + <artifactId>xwiki-build-xar-handlers</artifactId> + <version>1.7-SNAPSHOT</version> + </extension> + </extensions> + </build> +</project> Property changes on: trunks/pom.xml ___________________________________________________________________ Name: svn:keywords + "Author Date Id Revision" Name: svn:eol-style + native _______________________________________________ notifications mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/notifications
