https://github.com/xwiki/xwiki-commons
Raw File
Tip revision: 197acf6c65192a5b64b34a38565fcfc6831e555e authored by Simon Urli on 17 January 2024, 08:37:08 UTC
[maven-release-plugin] prepare release xwiki-commons-15.10.5
Tip revision: 197acf6
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>15.10.5</version>
  </parent>
  <artifactId>xwiki-commons-tools</artifactId>
  <name>XWiki Commons - Tools - Parent POM</name>
  <packaging>pom</packaging>
  <description>XWiki Commons - Tools - Parent POM</description>
  <properties>
    <!-- Don't run backward-compatibility checks in tools modules since we don't consider them public API -->
    <xwiki.revapi.skip>true</xwiki.revapi.skip>
  </properties>
  <modules>
    <!-- Sorted Alphabetically -->
    <module>xwiki-commons-tool-archiver</module>
    <module>xwiki-commons-tool-enforcers</module>
    <module>xwiki-commons-tool-extension-plugin</module>
    <module>xwiki-commons-tool-license-resources</module>
    <module>xwiki-commons-tool-pom</module>
    <module>xwiki-commons-tool-remote-resource-plugin</module>
    <module>xwiki-commons-tool-spoon</module>
    <module>xwiki-commons-tool-test</module>
    <module>xwiki-commons-tool-verification-resources</module>
    <module>xwiki-commons-tool-webjar-handlers</module>
    <module>xwiki-commons-tool-xar</module>
  </modules>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <!-- Exclude Tools from being Clovered since 1) we don't really care getting TPC for our tools and
               2) it's a bit involved to configure the various Maven poms using those plugins to have the Clover JAR
               injected in the right places.
               -->
          <groupId>org.openclover</groupId>
          <artifactId>clover-maven-plugin</artifactId>
          <configuration>
            <skip>true</skip>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>
back to top