https://github.com/xwiki/xwiki-commons
Raw File
Tip revision: 8493d664223e31da8307d1718775921422af4152 authored by mflorea on 28 March 2011, 20:42:43 UTC
[maven-release-plugin] copy for tag xwiki-commons-core-3.0
Tip revision: 8493d66
pom.xml
<?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>org.xwiki.commons</groupId>
    <artifactId>xwiki-commons</artifactId>
    <version>41</version>
    <relativePath>../xwiki-commons-pom</relativePath>
  </parent>
  <groupId>org.xwiki.commons</groupId>
  <artifactId>xwiki-commons-core</artifactId>
  <version>3.0</version>
  <name>XWiki Commons - Core - Parent POM</name>
  <packaging>pom</packaging>
  <description>XWiki Commons - Core - Parent POM</description>
  <scm>
    <connection>scm:svn:http://svn.xwiki.org/svnroot/xwiki/commons/xwiki-commons-core/tags/xwiki-commons-core-3.0</connection>
    <developerConnection>scm:svn:https://svn.xwiki.org/svnroot/xwiki/commons/xwiki-commons-core/tags/xwiki-commons-core-3.0</developerConnection>
    <url>http://svn.xwiki.org/svnroot/xwiki/commons/xwiki-commons-core/tags/xwiki-commons-core-3.0</url>
  </scm>
  <issueManagement>
    <system>jira</system>
    <url>http://jira.xwiki.org/jira/browse/XCOMMONS</url>
  </issueManagement>
  <modules>
    <module>xwiki-commons-component</module>
    <module>xwiki-commons-observation</module>
    <module>xwiki-commons-context</module>
    <module>xwiki-commons-configuration</module>
    <module>xwiki-commons-test</module>
    <module>xwiki-commons-xml</module>
    <module>xwiki-commons-properties</module>
    <module>xwiki-commons-management</module>
    <module>xwiki-commons-script</module>
    <module>xwiki-commons-velocity</module>
  </modules>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit-dep</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jmock</groupId>
      <artifactId>jmock</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <!-- Apply the Checkstyle configurations defined in the top level pom.xml file -->
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-checkstyle-plugin</artifactId>
      </plugin>
      <!-- Ensure that the XWiki Commons doesn't depend on platform. -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-enforcer-plugin</artifactId>
        <executions>
          <execution>
            <id>enforce-banned-dependencies</id>
            <goals>
              <goal>enforce</goal>
            </goals>
            <configuration>
              <rules>
                <bannedDependencies>
                  <excludes>
                    <exclude>org.xwiki.platform:*</exclude>
                  </excludes>
                </bannedDependencies>
              </rules>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
back to top