Added .m2 folder
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:05 CEST 2023
|
||||
cobertura-maven-plugin-2.7.jar>central=
|
||||
cobertura-maven-plugin-2.7.pom>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
0d49d827220fc4282babb85fb3b9970ffdb99aff
|
||||
+415
@@ -0,0 +1,415 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<artifactId>mojo-parent</artifactId>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<version>34</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<packaging>maven-plugin</packaging>
|
||||
|
||||
<name>Mojo's Maven plugin for Cobertura</name>
|
||||
<url>http://mojo.codehaus.org/cobertura-maven-plugin/</url>
|
||||
<description>This is the Mojo's Maven plugin for Cobertura. Cobertura is a free Java tool that calculates the percentage of code accessed by
|
||||
tests. It can be used to identify which parts of your Java program are lacking test coverage.
|
||||
</description>
|
||||
<inceptionYear>2005</inceptionYear>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>joakime</id>
|
||||
<name>Joakim Erdfelt</name>
|
||||
<email>joakim@erdfelt.net</email>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>-5</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>wgwaltney</id>
|
||||
<name>Will Gwaltney</name>
|
||||
<email>will.gwaltney@sas.com</email>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>fgiust</id>
|
||||
<name>Fabrizio Giustina</name>
|
||||
<email>fgiust@apache.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>aheritier</id>
|
||||
<name>Arnaud Heritier</name>
|
||||
<email>aheritier@apache.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Despot</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>rfscholte</id>
|
||||
<name>Robert Scholte</name>
|
||||
<email>rfscholte@codehaus.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
<timezone>Europe/Amsterdam</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>bimargulies</id>
|
||||
<name>Benson Margulies</name>
|
||||
<email>bimargulies@gmail.com</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
<timezone>-5</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Lennart Jörelid</name>
|
||||
<email>lj@jguru.se</email>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>dennisl</id>
|
||||
<name>Dennis Lundberg</name>
|
||||
<email>dennisl@codehaus.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
<timezone>Europe/Stockholm</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>James Carpenter</name>
|
||||
<email>jcarpenter621@yahoo.com</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
<timezone>-6</timezone>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<prerequisites>
|
||||
<maven>${mavenVersion}</maven>
|
||||
</prerequisites>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/mojo/tags/cobertura-maven-plugin-2.7</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/cobertura-maven-plugin-2.7</developerConnection>
|
||||
<url>http://svn.codehaus.org/mojo/tags/cobertura-maven-plugin-2.7</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/MCOBERTURA</url>
|
||||
</issueManagement>
|
||||
|
||||
<properties>
|
||||
<!--
|
||||
Add a property that can be injected into the site
|
||||
mojo.java.target won't work for that
|
||||
-->
|
||||
<javaVersion>1.6</javaVersion>
|
||||
<mojo.java.target>${javaVersion}</mojo.java.target>
|
||||
<mavenVersion>2.0.8</mavenVersion> <!-- MNG-3062 -->
|
||||
<!-- Remember to update AbstractCoberturaTestCase when upgrading Cobertura -->
|
||||
<coberturaVersion>2.1.1</coberturaVersion>
|
||||
</properties>
|
||||
<!-- from MSITE-459 -->
|
||||
<build>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav-jackrabbit</artifactId>
|
||||
<version>1.0-beta-7</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<configuration>
|
||||
<!-- Temporary solution to get a release out using gpg version 1 -->
|
||||
<useAgent>false</useAgent>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<!-- cobertura plugin deps -->
|
||||
<dependency>
|
||||
<groupId>net.sourceforge.cobertura</groupId>
|
||||
<artifactId>cobertura</artifactId>
|
||||
<version>${coberturaVersion}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>jaxen</groupId>
|
||||
<artifactId>jaxen</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>xerces</groupId>
|
||||
<artifactId>xercesImpl</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!--
|
||||
TODO: Remove these dependencies when Cobertura is released in a version which
|
||||
does not include ancient versions of Jaxen and XercesImpl
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>xerces</groupId>
|
||||
<artifactId>xercesImpl</artifactId>
|
||||
<version>2.11.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jaxen</groupId>
|
||||
<artifactId>jaxen</artifactId>
|
||||
<version>1.1.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jdom</groupId>
|
||||
<artifactId>jdom</artifactId>
|
||||
<version>1.1.3</version>
|
||||
</dependency>
|
||||
<!--
|
||||
runtime has no 3rd party deps. This allows us to
|
||||
pass this dependency into the project's classpath
|
||||
at runtime without risk of introducing dep version
|
||||
clashes e.g. projects which require an older version of
|
||||
asm (namely Hibernate).
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>net.sourceforge.cobertura</groupId>
|
||||
<artifactId>cobertura-runtime</artifactId>
|
||||
<version>${coberturaVersion}</version>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>urbanophile</groupId>
|
||||
<artifactId>java-getopt</artifactId>
|
||||
<version>1.0.9</version>
|
||||
</dependency>
|
||||
<!-- maven plugin deps -->
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-core</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-artifact</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-api</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-project</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-impl</artifactId>
|
||||
<version>2.0.4.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<version>2.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>2.0.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.shared</groupId>
|
||||
<artifactId>maven-invoker</artifactId>
|
||||
<version>2.0.11</version>
|
||||
</dependency>
|
||||
<!-- testing deps -->
|
||||
<dependency>
|
||||
<groupId>httpunit</groupId>
|
||||
<artifactId>httpunit</artifactId>
|
||||
<version>1.6.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.8.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.shared</groupId>
|
||||
<artifactId>maven-plugin-testing-harness</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<!-- @todo This is here so that we can use SNAPSHOT versions of Cobertura - remove before release -->
|
||||
<id>ossrh</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-changes-plugin</artifactId>
|
||||
<version>2.11</version>
|
||||
<configuration>
|
||||
<onlyCurrentVersion>true</onlyCurrentVersion>
|
||||
<columnNames>Type,Key,Summary,Status,Resolution,Assignee</columnNames>
|
||||
<sortColumnNames>Type,Key</sortColumnNames>
|
||||
<maxEntries>250</maxEntries>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>jira-report</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>run-its</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipTests</name>
|
||||
<value>!true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<configuration>
|
||||
<debug>true</debug>
|
||||
<projectsDirectory>src/it</projectsDirectory>
|
||||
<preBuildHookScript>setup</preBuildHookScript>
|
||||
<postBuildHookScript>verify</postBuildHookScript>
|
||||
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
<goal>site</goal>
|
||||
</goals>
|
||||
<settingsFile>src/it/settings.xml</settingsFile>
|
||||
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>integration-test</id>
|
||||
<goals>
|
||||
<goal>install</goal>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>updateLicenseHeaders</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>updateLicense</name>
|
||||
</property>
|
||||
</activation>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<!--
|
||||
Copies license data to source files and LICENSE.txt files to artifacts.
|
||||
|
||||
Why: Ensures that licenses are correctly provided.
|
||||
Used: Standard lifecycle. mvn process-sources, mvn generate-sources.
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
<configuration>
|
||||
<canUpdateDescription>true</canUpdateDescription>
|
||||
<failOnMissingHeader>true</failOnMissingHeader>
|
||||
<acceptPomPackaging>true</acceptPomPackaging>
|
||||
<licenseName>apache_v2</licenseName>
|
||||
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
|
||||
<roots>
|
||||
<root>src/main</root>
|
||||
<root>src/test</root>
|
||||
<root>src/site</root>
|
||||
</roots>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>update-file-header</id>
|
||||
<phase>process-sources</phase>
|
||||
<goals>
|
||||
<goal>update-file-header</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>add-license</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>update-project-license</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
b66c703679b6821c5a141c18ee18ca65d2ea58fa
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:05 CEST 2023
|
||||
findbugs-maven-plugin-3.0.3.pom>central=
|
||||
findbugs-maven-plugin-3.0.3.jar>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
fa38fb75bf3d2a4d22de622c3fbedc911cd1a90a
|
||||
+664
@@ -0,0 +1,664 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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/xsd/maven-4.0.0.xsd ">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>mojo-parent</artifactId>
|
||||
<version>35</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>3.0.3</version>
|
||||
<packaging>maven-plugin</packaging>
|
||||
|
||||
<name>FindBugs Maven Plugin</name>
|
||||
<description>This Plug-In generates reports based on the FindBugs Library</description>
|
||||
<url>http://gleclaire.github.io/findbugs-maven-plugin/</url>
|
||||
<inceptionYear>2005</inceptionYear>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<!--
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>sonatype</id>
|
||||
<name>SonaType Staging</name>
|
||||
<url>https://oss.sonatype.org/content/repositories/staging/</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
-->
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>cr</id>
|
||||
<name>Cyrill Ruettimann</name>
|
||||
<email>mypublicaddress@mac.com</email>
|
||||
<roles>
|
||||
<role>Documentation</role>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>gl</id>
|
||||
<name>Garvin LeClaire</name>
|
||||
<email>gleclaire@codehaus.org</email>
|
||||
<url>http://gdleclaire.blogspot.com</url>
|
||||
<roles>
|
||||
<role>Documentation</role>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>-5</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Olivier Lamy</name>
|
||||
<email>olamy@apache.org</email>
|
||||
<organization />
|
||||
<organizationUrl>http://olamy.blogspot.com/</organizationUrl>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Detlef Pleiss</name>
|
||||
<email>d.pleiss@comundus.com</email>
|
||||
<organization>comundus GmbH</organization>
|
||||
<organizationUrl>http://www.comundus.com</organizationUrl>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rolf Kulemann</name>
|
||||
<email>roku@apache.org</email>
|
||||
<organization>NEO Business Partners</organization>
|
||||
<organizationUrl>http://www.neo-partners.com</organizationUrl>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<url>https://www.xing.com/profile/Rolf_Kulemann</url>
|
||||
<timezone>+1</timezone>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<prerequisites>
|
||||
<maven>3.0.1</maven>
|
||||
</prerequisites>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:gleclaire/findbugs-maven-plugin.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:gleclaire/findbugs-maven-plugin.git</developerConnection>
|
||||
<url>https://github.com/gleclaire/findbugs-maven-plugin</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>GitHub Issues</system>
|
||||
<url>http://github.com/gleclaire/findbugs-maven-plugin/issues</url>
|
||||
</issueManagement>
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>github-project-site</id>
|
||||
<url>gitsite:git@github.com/gleclaire/findbugs-maven-plugin.git</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<properties>
|
||||
<gmavenVersion>1.5</gmavenVersion>
|
||||
<groovyVersion>2.4.3</groovyVersion>
|
||||
<antVersion>1.9.4</antVersion>
|
||||
<doxiaVersion>1.4</doxiaVersion>
|
||||
<sitePluginVersion>3.4</sitePluginVersion>
|
||||
<project.build.java.target>1.7</project.build.java.target>
|
||||
<projectVersion>${project.version}</projectVersion>
|
||||
<compilerPluginVersion>2.3.2</compilerPluginVersion>
|
||||
<pluginPluginVersion>3.4</pluginPluginVersion>
|
||||
<findbugsVersion>3.0.1</findbugsVersion>
|
||||
<jxrPluginVersion>2.5</jxrPluginVersion>
|
||||
<fb-contribVersion>4.8.2</fb-contribVersion>
|
||||
<junitVersion>4.8.1</junitVersion>
|
||||
<mavenSurefireVersion>2.6</mavenSurefireVersion>
|
||||
<InfoReportsVersion>2.8</InfoReportsVersion>
|
||||
<findbugsTestDebug>false</findbugsTestDebug>
|
||||
<integrationTestSrc>${project.build.directory}/it-src-findbugs</integrationTestSrc>
|
||||
<localTestSrc>${user.dir}/FindBugs/findbugsTestCases/src</localTestSrc>
|
||||
<remoteTestSrc>scm:svn:http://findbugs.googlecode.com/svn/branches/1.3.9/findbugsTestCases/src</remoteTestSrc>
|
||||
<!-- <remoteTestSrc>scm:svn:http://findbugs.googlecode.com/svn/trunk/findbugsTestCases/src/java/</remoteTestSrc> -->
|
||||
<includesTestSrcPattern>**/A*.java, **/Use*.java</includesTestSrcPattern>
|
||||
<testSrc>remote</testSrc>
|
||||
|
||||
<pmd.skip>true</pmd.skip>
|
||||
<cpd.skip>true</cpd.skip>
|
||||
<checkstyle.skip>true</checkstyle.skip>
|
||||
<skipSurefireReport>true</skipSurefireReport>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>findbugs</artifactId>
|
||||
<version>${findbugsVersion}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- gmaven -->
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>${antVersion}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>${groovyVersion}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-impl</artifactId>
|
||||
<version>2.1</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-api</artifactId>
|
||||
<version>3.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||
<artifactId>maven-plugin-annotations</artifactId>
|
||||
<version>${pluginPluginVersion}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>2.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-descriptor</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-artifact</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- doxia -->
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-core</artifactId>
|
||||
<version>${doxiaVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-sink-api</artifactId>
|
||||
<version>${doxiaVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-decoration-model</artifactId>
|
||||
<version>${doxiaVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-site-renderer</artifactId>
|
||||
<version>${doxiaVersion}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-api</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.shared</groupId>
|
||||
<artifactId>maven-doxia-tools</artifactId>
|
||||
<version>1.2.1</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<!-- plexus -->
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-resources</artifactId>
|
||||
<version>1.0-alpha-7</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.5.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.sonatype.plexus</groupId>
|
||||
<artifactId>plexus-build-api</artifactId>
|
||||
<version>0.0.7</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<defaultGoal>install</defaultGoal>
|
||||
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.scm</groupId>
|
||||
<artifactId>maven-scm-provider-gitexe</artifactId>
|
||||
<version>1.8.1</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.scm</groupId>
|
||||
<artifactId>maven-scm-manager-plexus</artifactId>
|
||||
<version>1.8.1</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<!-- note you can download this from http://github.com/khuxtable/wagon-gitsite -->
|
||||
<groupId>org.kathrynhuxtable.maven.wagon</groupId>
|
||||
<artifactId>wagon-gitsite</artifactId>
|
||||
<version>0.3.1</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>${pluginPluginVersion}</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>${sitePluginVersion}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-descriptor</id>
|
||||
<phase>process-classes</phase>
|
||||
</execution>
|
||||
<!-- if you want to generate help goal -->
|
||||
<execution>
|
||||
<id>help-goal</id>
|
||||
<goals>
|
||||
<goal>helpmojo</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>2.3.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.gmavenplus</groupId>
|
||||
<artifactId>gmavenplus-plugin</artifactId>
|
||||
<version>${gmavenVersion}</version>
|
||||
<configuration>
|
||||
<groovydocOutputDirectory>${project.reporting.outputDirectory}/apidocs</groovydocOutputDirectory>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>compileGroovy</id>
|
||||
<goals>
|
||||
<goal>addSources</goal>
|
||||
<goal>addTestSources</goal>
|
||||
<goal>generateStubs</goal>
|
||||
<goal>compile</goal>
|
||||
<goal>testGenerateStubs</goal>
|
||||
<goal>testCompile</goal>
|
||||
<!--
|
||||
<goal>removeStubs</goal>
|
||||
<goal>removeTestStubs</goal>
|
||||
-->
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>site</id>
|
||||
<phase>site</phase>
|
||||
<goals>
|
||||
<goal>groovydoc</goal>
|
||||
<goal>testGroovydoc</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<skipTests>true</skipTests>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<instrumentation>
|
||||
<ignores>
|
||||
<ignore>org.codehaus.mojo.findbugs.*</ignore>
|
||||
</ignores>
|
||||
<excludes>
|
||||
<exclude>org/codehaus/mojo/findbugs/**/*.class</exclude>
|
||||
</excludes>
|
||||
</instrumentation>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<configuration>
|
||||
<pushChanges>false</pushChanges>
|
||||
<localCheckout>true</localCheckout>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<reporting>
|
||||
<excludeDefaults>true</excludeDefaults>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<configuration>
|
||||
<skip>true</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>${pluginPluginVersion}</version>
|
||||
<configuration>
|
||||
<requirements>
|
||||
<jdk>${project.build.java.target}</jdk>
|
||||
</requirements>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>${InfoReportsVersion}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>l10n-maven-plugin</artifactId>
|
||||
<version>1.0-alpha-2</version>
|
||||
<configuration>
|
||||
<locales>
|
||||
<locale>es</locale>
|
||||
<locale>fr</locale>
|
||||
<locale>no_NO</locale>
|
||||
<locale>pt_BR</locale>
|
||||
</locales>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>codenarc-maven-plugin</artifactId>
|
||||
<version>0.22-1</version>
|
||||
<configuration>
|
||||
<maxPriority1Violations>0</maxPriority1Violations>
|
||||
<maxPriority2Violations>0</maxPriority2Violations>
|
||||
<maxPriority3Violations>5</maxPriority3Violations>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>${project.artifactId}</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>${InfoReportsVersion}</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>cim</report>
|
||||
<report>dependency-info</report>
|
||||
<report>dependencies</report>
|
||||
<report>dependency-convergence</report>
|
||||
<report>dependency-management</report>
|
||||
<report>index</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>license</report>
|
||||
<report>mailing-list</report>
|
||||
<report>plugin-management</report>
|
||||
<report>project-team</report>
|
||||
<report>scm</report>
|
||||
<report>summary</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>dependency-updates-report</report>
|
||||
<report>plugin-updates-report</report>
|
||||
<report>property-updates-report</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>run-its</id>
|
||||
<properties>
|
||||
<findbug.debug>false</findbug.debug>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>prepare-integration-test</id>
|
||||
<phase>pre-integration-test</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<projectsDirectory>${basedir}/src/it-tools</projectsDirectory>
|
||||
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
||||
<showVersion>true</showVersion>
|
||||
<pomIncludes>
|
||||
<pomInclude>*/pom.xml</pomInclude>
|
||||
</pomIncludes>
|
||||
<postBuildHookScript>verify</postBuildHookScript>
|
||||
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
<goal>install</goal>
|
||||
</goals>
|
||||
<settingsFile>src/it/settings.xml</settingsFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>integration-test</id>
|
||||
<goals>
|
||||
<goal>install</goal>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<projectsDirectory>src/it</projectsDirectory>
|
||||
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
||||
<showVersion>true</showVersion>
|
||||
<pomIncludes>
|
||||
<pomInclude>*/pom.xml</pomInclude>
|
||||
</pomIncludes>
|
||||
<postBuildHookScript>verify</postBuildHookScript>
|
||||
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
||||
<settingsFile>src/it/settings.xml</settingsFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>find-it-src-export</id>
|
||||
<activation>
|
||||
<!-- <file> -->
|
||||
<!-- <missing>${integrationTestSrc}/A.java</missing> -->
|
||||
<!-- </file> -->
|
||||
<property>
|
||||
<name>testSrc</name>
|
||||
<value>remote</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-scm-plugin</artifactId>
|
||||
<version>1.9.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>prepare-integration-test-remote-findbugs-src</id>
|
||||
<phase>pre-integration-test</phase>
|
||||
<goals>
|
||||
<goal>export</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<connectionUrl>${remoteTestSrc}</connectionUrl>
|
||||
<exportDirectory>${integrationTestSrc}</exportDirectory>
|
||||
<providerImplementations>
|
||||
<svn>javasvn</svn>
|
||||
</providerImplementations>
|
||||
<includes>${includesTestSrcPattern}</includes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.google.code.maven-scm-provider-svnjava</groupId>
|
||||
<artifactId>maven-scm-provider-svnjava</artifactId>
|
||||
<version>1.11</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>find-it-src-local</id>
|
||||
<activation>
|
||||
<!-- <file> -->
|
||||
<!-- <missing>${integrationTestSrc}/A.java</missing> -->
|
||||
<!-- </file> -->
|
||||
<property>
|
||||
<name>testSrc</name>
|
||||
<value>local</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>prepare-integration-test-local-findbugs-src</id>
|
||||
<phase>pre-integration-test</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<target>
|
||||
|
||||
<echo>Copying Source for Tests......</echo>
|
||||
<mkdir dir="${integrationTestSrc}" />
|
||||
<copy todir="${integrationTestSrc}">
|
||||
<fileset dir="${localTestSrc}" includes="${includesTestSrcPattern}" />
|
||||
</copy>
|
||||
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
</profiles>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
ba4972e2ec3de53228d33c3441c507692b8bdd8f
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:05 CEST 2023
|
||||
javancss-maven-plugin-2.1.jar>central=
|
||||
javancss-maven-plugin-2.1.pom>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
b4378bff9b06f56b987a8c314c2df8632b2ae6c3
|
||||
+235
@@ -0,0 +1,235 @@
|
||||
<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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>mojo-parent</artifactId>
|
||||
<version>34</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
<packaging>maven-plugin</packaging>
|
||||
<version>2.1</version>
|
||||
|
||||
<name>JavaNCSS Maven Plugin</name>
|
||||
<description>Maven2 plugin generating NCSS and CCN code metrics.</description>
|
||||
<inceptionYear>2005</inceptionYear>
|
||||
|
||||
<prerequisites>
|
||||
<maven>2.0</maven>
|
||||
</prerequisites>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License 2</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/MJNCSS</url>
|
||||
</issueManagement>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/mojo/tags/javancss-maven-plugin-2.1</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/javancss-maven-plugin-2.1</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/mojo/tags/javancss-maven-plugin-2.1</url>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Jean-Laurent de Morlhon</name>
|
||||
<id>jeanlaurent</id>
|
||||
<email>jeanlaurent@codehaus.org</email>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Mike Perham</name>
|
||||
<id>mperham</id>
|
||||
<email>mperham@gmail.com</email>
|
||||
<timezone>-6</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>hboutemy</id>
|
||||
<name>Hervé Boutemy</name>
|
||||
<email>hboutemy@codehaus.org</email>
|
||||
<timezone>Europe/Paris</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||
<artifactId>maven-plugin-annotations</artifactId>
|
||||
<version>3.2</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0.14</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-project</artifactId>
|
||||
<version>2.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-model</artifactId>
|
||||
<version>2.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-api</artifactId>
|
||||
<version>3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-sink-api</artifactId>
|
||||
<version>1.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-core</artifactId>
|
||||
<version>1.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>dom4j</groupId>
|
||||
<artifactId>dom4j</artifactId>
|
||||
<version>1.6.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jaxen</groupId>
|
||||
<artifactId>jaxen</artifactId>
|
||||
<version>1.1.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-impl</artifactId>
|
||||
<version>2.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.javancss</groupId>
|
||||
<artifactId>javancss</artifactId>
|
||||
<version>${javancss-version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>easymock</groupId>
|
||||
<artifactId>easymock</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<properties>
|
||||
<javancss-version>33.54</javancss-version>
|
||||
<sitePluginVersion>3.4</sitePluginVersion>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>3.3</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<configuration>
|
||||
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>mojo-descriptor</id>
|
||||
<goals>
|
||||
<goal>descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>check-docck</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-docck-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>run-its</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<configuration>
|
||||
<debug>true</debug>
|
||||
<projectsDirectory>src/it</projectsDirectory>
|
||||
<pomIncludes>
|
||||
<pomInclude>*/pom.xml</pomInclude>
|
||||
</pomIncludes>
|
||||
<postBuildHookScript>verify</postBuildHookScript>
|
||||
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
<goal>site</goal>
|
||||
</goals>
|
||||
<settingsFile>src/it/settings.xml</settingsFile>
|
||||
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
||||
<cloneAllFiles>true</cloneAllFiles>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>integration-test</id>
|
||||
<goals>
|
||||
<goal>install</goal>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
5984b896782bdf3a61674616066cde8d6da03fdc
|
||||
@@ -0,0 +1,670 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<name>Animal Sniffer Maven Plugin</name>
|
||||
<prefix>animal-sniffer</prefix>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven ANTLR Plugin</name>
|
||||
<prefix>antlr</prefix>
|
||||
<artifactId>antlr-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>ANTLR-v3 Maven Plugin</name>
|
||||
<prefix>antlr3</prefix>
|
||||
<artifactId>antlr3-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Appassembler :: Maven Plug-In</name>
|
||||
<prefix>appassembler</prefix>
|
||||
<artifactId>appassembler-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Appfuse Maven Plugin</name>
|
||||
<prefix>appfuse</prefix>
|
||||
<artifactId>appfuse-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Apt Maven Plugin</name>
|
||||
<prefix>apt</prefix>
|
||||
<artifactId>apt-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mojo's AspectJ Maven Plugin</name>
|
||||
<prefix>aspectj</prefix>
|
||||
<artifactId>aspectj-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Axis Tools Maven Plugin</name>
|
||||
<prefix>axistools</prefix>
|
||||
<artifactId>axistools-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Batik Maven Plugin</name>
|
||||
<prefix>batik</prefix>
|
||||
<artifactId>batik-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Build Helper Maven Plugin</name>
|
||||
<prefix>build-helper</prefix>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Dependency Builder Plugin</name>
|
||||
<prefix>build-on-demand</prefix>
|
||||
<artifactId>build-on-demand-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Build Number Maven Plugin</name>
|
||||
<prefix>buildnumber</prefix>
|
||||
<artifactId>buildnumber-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>BuildPlan Maven Plugin</name>
|
||||
<prefix>buildplan</prefix>
|
||||
<artifactId>buildplan-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mojo's Cassandra Maven Plugin</name>
|
||||
<prefix>cassandra</prefix>
|
||||
<artifactId>cassandra-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Castor Maven Plugin</name>
|
||||
<prefix>castor</prefix>
|
||||
<artifactId>castor-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven C-Build Lifecycle Mappings</name>
|
||||
<prefix>cbuild-lifecycles</prefix>
|
||||
<artifactId>cbuild-lifecycles</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Changelog Plug-in</name>
|
||||
<prefix>changelog</prefix>
|
||||
<artifactId>changelog-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Changes Report Plugin</name>
|
||||
<prefix>changes</prefix>
|
||||
<artifactId>changes-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Chronos JMeter</name>
|
||||
<prefix>chronos-jmeter</prefix>
|
||||
<artifactId>chronos-jmeter-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Chronos Report</name>
|
||||
<prefix>chronos-report</prefix>
|
||||
<artifactId>chronos-report-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Chronos Surefire</name>
|
||||
<prefix>chronos-surefire</prefix>
|
||||
<artifactId>chronos-surefire-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Clirr Maven Plugin</name>
|
||||
<prefix>clirr</prefix>
|
||||
<artifactId>clirr-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mojo's Maven plugin for Cobertura</name>
|
||||
<prefix>cobertura</prefix>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>CodeNarc Maven Plugin</name>
|
||||
<prefix>codenarc</prefix>
|
||||
<artifactId>codenarc-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Commons Attributes Plugin</name>
|
||||
<prefix>commons-attributes</prefix>
|
||||
<artifactId>commons-attributes-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Dashboard Report Plugin</name>
|
||||
<prefix>dashboard</prefix>
|
||||
<artifactId>dashboard-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>DbUnit Plugin</name>
|
||||
<prefix>dbunit</prefix>
|
||||
<artifactId>dbunit-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Database Upgrade Plugin</name>
|
||||
<prefix>dbupgrade</prefix>
|
||||
<artifactId>dbupgrade-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Dependency Maven Plugin</name>
|
||||
<prefix>dependency</prefix>
|
||||
<artifactId>dependency-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Deploy All Plugin for Maven</name>
|
||||
<prefix>deploy-all</prefix>
|
||||
<artifactId>deploy-all-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>DITA Open Toolkit Maven Plugin</name>
|
||||
<prefix>dita</prefix>
|
||||
<artifactId>dita-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>DITA Open Toolkit Maven Plugin</name>
|
||||
<prefix>ditaot</prefix>
|
||||
<artifactId>ditaot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Docbook plugin</name>
|
||||
<prefix>docbook</prefix>
|
||||
<artifactId>docbook-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Emma Maven Plugin</name>
|
||||
<prefix>emma</prefix>
|
||||
<artifactId>emma-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Enchanter Maven Plugin</name>
|
||||
<prefix>enchanter</prefix>
|
||||
<artifactId>enchanter-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Exec Maven Plugin</name>
|
||||
<prefix>exec</prefix>
|
||||
<artifactId>exec-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Failsafe Maven Plugin</name>
|
||||
<prefix>failsafe</prefix>
|
||||
<artifactId>failsafe-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>FindBugs Maven Plugin</name>
|
||||
<prefix>findbugs</prefix>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Fit Maven Plugin</name>
|
||||
<prefix>fit</prefix>
|
||||
<artifactId>fit-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Fitnesse plugin.</name>
|
||||
<prefix>fitnesse</prefix>
|
||||
<artifactId>fitnesse-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Flatten Plugin</name>
|
||||
<prefix>flatten</prefix>
|
||||
<artifactId>flatten-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Groovy Maven Plugin</name>
|
||||
<prefix>groovy</prefix>
|
||||
<artifactId>groovy-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mojo's Maven Plugin for GWT</name>
|
||||
<prefix>gwt</prefix>
|
||||
<artifactId>gwt-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Hibernate3 Maven Plugin</name>
|
||||
<prefix>hibernate3</prefix>
|
||||
<artifactId>hibernate3-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>IANAL Maven Plugin</name>
|
||||
<prefix>ianal</prefix>
|
||||
<artifactId>ianal-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven IDEA UI Designer Plugin</name>
|
||||
<prefix>ideauidesigner</prefix>
|
||||
<artifactId>ideauidesigner-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>CORBA IDL Compiler Maven Plugin</name>
|
||||
<prefix>idlj</prefix>
|
||||
<artifactId>idlj-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Jalopy Maven Plugin</name>
|
||||
<prefix>jalopy</prefix>
|
||||
<artifactId>jalopy-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven JasperReports Plugin</name>
|
||||
<prefix>jasperreports</prefix>
|
||||
<artifactId>jasperreports-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JavaCC Maven Plugin</name>
|
||||
<prefix>javacc</prefix>
|
||||
<artifactId>javacc-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JavaNCSS Maven Plugin</name>
|
||||
<prefix>javancss</prefix>
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JAXB-2 Maven Plugin</name>
|
||||
<prefix>jaxb2</prefix>
|
||||
<artifactId>jaxb2-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JAX-WS Maven Plugin</name>
|
||||
<prefix>jaxws</prefix>
|
||||
<artifactId>jaxws-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JBoss Maven Plugin</name>
|
||||
<prefix>jboss</prefix>
|
||||
<artifactId>jboss-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JBoss Packaging Maven Plugin</name>
|
||||
<prefix>jboss-packaging</prefix>
|
||||
<artifactId>jboss-packaging-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JDepend Maven Plugin</name>
|
||||
<prefix>jdepend</prefix>
|
||||
<artifactId>jdepend-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JPox Maven Plugin</name>
|
||||
<prefix>jpox</prefix>
|
||||
<artifactId>jpox-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JRuby Mojo Support</name>
|
||||
<prefix>jruby</prefix>
|
||||
<artifactId>jruby-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JavaScript Import Maven Plugin</name>
|
||||
<prefix>js-import</prefix>
|
||||
<artifactId>js-import-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JSLint Maven Plugin</name>
|
||||
<prefix>jslint</prefix>
|
||||
<artifactId>jslint-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Jspc plugin</name>
|
||||
<prefix>jspc</prefix>
|
||||
<artifactId>jspc-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven JXR Plugin</name>
|
||||
<prefix>jxr</prefix>
|
||||
<artifactId>jxr-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Keytool: Maven Plugin</name>
|
||||
<prefix>keytool</prefix>
|
||||
<artifactId>keytool-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Localization Tools Maven Plugin</name>
|
||||
<prefix>l10n</prefix>
|
||||
<artifactId>l10n-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>LaTeX Maven Plugin</name>
|
||||
<prefix>latex</prefix>
|
||||
<artifactId>latex-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>LESS CSS Maven Plugin</name>
|
||||
<prefix>lesscss</prefix>
|
||||
<artifactId>lesscss-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>License Maven Plugin</name>
|
||||
<prefix>license</prefix>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Local Configuration Plugin</name>
|
||||
<prefix>local-config</prefix>
|
||||
<artifactId>local-config-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Makefile Orchestration Plugin</name>
|
||||
<prefix>make</prefix>
|
||||
<artifactId>make-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven JPox Plugin</name>
|
||||
<prefix>jpox</prefix>
|
||||
<artifactId>maven-jpox-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven MiniJar Plugin</name>
|
||||
<prefix>minijar</prefix>
|
||||
<artifactId>minijar-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mock Repository Manager :: Maven Plugin</name>
|
||||
<prefix>mrm</prefix>
|
||||
<artifactId>mrm-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Multimodule Build Optimizer Plugin</name>
|
||||
<prefix>multibuild-optimizer</prefix>
|
||||
<artifactId>multibuild-optimizer-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Native Maven Plugin</name>
|
||||
<prefix>native</prefix>
|
||||
<artifactId>native-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Native2Ascii Maven Plugin</name>
|
||||
<prefix>native2ascii</prefix>
|
||||
<artifactId>native2ascii-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>NB Repository Plugin</name>
|
||||
<prefix>nb-repository</prefix>
|
||||
<artifactId>nb-repository-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>NBM Maven Plugin</name>
|
||||
<prefix>nbm</prefix>
|
||||
<artifactId>nbm-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Netbeans Freeform Maven Plugin</name>
|
||||
<prefix>netbeans-freeform</prefix>
|
||||
<artifactId>netbeans-freeform-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mojo's Maven Plugin for NSIS</name>
|
||||
<prefix>nsis</prefix>
|
||||
<artifactId>nsis-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>OpenJPA Maven Plugin</name>
|
||||
<prefix>openjpa</prefix>
|
||||
<artifactId>openjpa-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven OS X Application Bundle Plugin</name>
|
||||
<prefix>osxappbundle</prefix>
|
||||
<artifactId>osxappbundle-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Ounce Maven Plugin</name>
|
||||
<prefix>ounce</prefix>
|
||||
<artifactId>ounce-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Patch Plugin</name>
|
||||
<prefix>patch</prefix>
|
||||
<artifactId>patch-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Eclipse PDE Maven Plugin</name>
|
||||
<prefix>pde</prefix>
|
||||
<artifactId>pde-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Platform Attribute Detector Plugin for Maven</name>
|
||||
<prefix>platform-detector</prefix>
|
||||
<artifactId>platform-detector-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Project Archive Plugin</name>
|
||||
<prefix>project-archive</prefix>
|
||||
<artifactId>project-archive-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Project Sources Plugin</name>
|
||||
<prefix>project-sources</prefix>
|
||||
<artifactId>project-sources-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Properties Maven Plugin</name>
|
||||
<prefix>properties</prefix>
|
||||
<artifactId>properties-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>RAT Maven Plugin</name>
|
||||
<prefix>rat</prefix>
|
||||
<artifactId>rat-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Remote-Source Plugin</name>
|
||||
<prefix>remote-source</prefix>
|
||||
<artifactId>remote-source-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Retrotranslator MAven Plugin</name>
|
||||
<prefix>retrotranslator</prefix>
|
||||
<artifactId>retrotranslator-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>RMI Compiler Maven Plugin</name>
|
||||
<prefix>rmic</prefix>
|
||||
<artifactId>rmic-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>RPM Plugin</name>
|
||||
<prefix>rpm-cbuild</prefix>
|
||||
<artifactId>rpm-cbuild-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>RPM Maven Plugin</name>
|
||||
<prefix>rpm</prefix>
|
||||
<artifactId>rpm-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>RSpec Maven Plugin</name>
|
||||
<prefix>rspec</prefix>
|
||||
<artifactId>rspec-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven 2 SableCC Plugin</name>
|
||||
<prefix>sablecc</prefix>
|
||||
<artifactId>sablecc-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven SCM Changelog Reporter</name>
|
||||
<prefix>scmchangelog</prefix>
|
||||
<artifactId>scmchangelog-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Selenium Plugin</name>
|
||||
<prefix>selenium</prefix>
|
||||
<artifactId>selenium-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Service Documentation Generator Plugin</name>
|
||||
<prefix>servicedocgen</prefix>
|
||||
<artifactId>servicedocgen-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Settings Management Plugin</name>
|
||||
<prefix>settings</prefix>
|
||||
<artifactId>settings-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>shade-maven-plugin</name>
|
||||
<prefix>shade</prefix>
|
||||
<artifactId>shade-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Shell Script Executor Plugin</name>
|
||||
<prefix>shell</prefix>
|
||||
<artifactId>shell-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Ship Maven Plugin</name>
|
||||
<prefix>ship</prefix>
|
||||
<artifactId>ship-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Super Helpful Integration Testing ThingY (SHITTY) Maven Plugin</name>
|
||||
<prefix>shitty</prefix>
|
||||
<artifactId>shitty-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>SiteSkinner Maven Plugin</name>
|
||||
<prefix>siteskinner</prefix>
|
||||
<artifactId>siteskinner-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>State Machine Compiler (SMC) Maven Plugin</name>
|
||||
<prefix>smc</prefix>
|
||||
<artifactId>smc-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Solaris Plugin</name>
|
||||
<prefix>solaris</prefix>
|
||||
<artifactId>solaris-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>SonarQube Maven Plugin</name>
|
||||
<prefix>sonar</prefix>
|
||||
<artifactId>sonar-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>springdoclet</name>
|
||||
<prefix>springdoclet</prefix>
|
||||
<artifactId>springdoclet-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>springws-maven-plugin</name>
|
||||
<prefix>springws</prefix>
|
||||
<artifactId>springws-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>SQL Plugin for Maven</name>
|
||||
<prefix>sql</prefix>
|
||||
<artifactId>sql-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>SQLJ Maven Plugin</name>
|
||||
<prefix>sqlj</prefix>
|
||||
<artifactId>sqlj-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Surefire Report Plugin</name>
|
||||
<prefix>surefire-report</prefix>
|
||||
<artifactId>surefire-report-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Sysdeo Tomcat Maven Plugin</name>
|
||||
<prefix>sysdeo-tomcat</prefix>
|
||||
<artifactId>sysdeo-tomcat-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Taglist Maven Plugin</name>
|
||||
<prefix>taglist</prefix>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Templating Maven Plugin</name>
|
||||
<prefix>templating</prefix>
|
||||
<artifactId>templating-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Tidy Maven Plugin</name>
|
||||
<prefix>tidy</prefix>
|
||||
<artifactId>tidy-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Tomcat Maven Plugin</name>
|
||||
<prefix>tomcat</prefix>
|
||||
<artifactId>tomcat-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Plugin for TrueZIP</name>
|
||||
<prefix>truezip</prefix>
|
||||
<artifactId>truezip-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Unix Plug-In</name>
|
||||
<prefix>unix</prefix>
|
||||
<artifactId>unix-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Versions Maven Plugin</name>
|
||||
<prefix>versions</prefix>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven VFS plugin</name>
|
||||
<prefix>vfs</prefix>
|
||||
<artifactId>vfs-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Wagon Maven Plugin</name>
|
||||
<prefix>wagon</prefix>
|
||||
<artifactId>wagon-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>WAS6 Maven Plugin</name>
|
||||
<prefix>was6</prefix>
|
||||
<artifactId>was6-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>webdoclet</name>
|
||||
<prefix>webdoclet</prefix>
|
||||
<artifactId>webdoclet-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Weblogic Maven Plugin</name>
|
||||
<prefix>weblogic</prefix>
|
||||
<artifactId>weblogic-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Web Minifier Maven Plugin</name>
|
||||
<prefix>webminifier</prefix>
|
||||
<artifactId>webminifier-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>MWEBSTART :: Webstart Maven Plugin</name>
|
||||
<prefix>webstart</prefix>
|
||||
<artifactId>webstart-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Canoo WebTest Maven Plugin</name>
|
||||
<prefix>webtest</prefix>
|
||||
<artifactId>webtest-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>XDoclet Maven Plugin</name>
|
||||
<prefix>xdoclet</prefix>
|
||||
<artifactId>xdoclet-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>XML Maven Plugin</name>
|
||||
<prefix>xml</prefix>
|
||||
<artifactId>xml-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven XML Beans Plugin</name>
|
||||
<prefix>xmlbeans</prefix>
|
||||
<artifactId>xmlbeans-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven XSLT Plugin</name>
|
||||
<prefix>xslt</prefix>
|
||||
<artifactId>xslt-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</metadata>
|
||||
@@ -0,0 +1 @@
|
||||
cde74f96a711436e250d9a82d9650c3e3a167749
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:05 CEST 2023
|
||||
mojo-parent-34.pom>central=
|
||||
@@ -0,0 +1,667 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
|
||||
<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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus</groupId>
|
||||
<artifactId>codehaus-parent</artifactId>
|
||||
<version>4</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>mojo-parent</artifactId>
|
||||
<version>34</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Codehaus Mojo Parent</name>
|
||||
<url>http://mojo.codehaus.org</url>
|
||||
<organization>
|
||||
<name>Codehaus</name>
|
||||
<url>http://codehaus.org</url>
|
||||
</organization>
|
||||
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Development List</name>
|
||||
<subscribe>dev-subscribe@mojo.codehaus.org</subscribe>
|
||||
<unsubscribe>dev-unsubscribe@mojo.codehaus.org</unsubscribe>
|
||||
<post>dev@mojo.codehaus.org</post>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.dev</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/Developer-f3.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>User List</name>
|
||||
<subscribe>user-subscribe@mojo.codehaus.org</subscribe>
|
||||
<unsubscribe>user-unsubscribe@mojo.codehaus.org</unsubscribe>
|
||||
<post>user@mojo.codehaus.org</post>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.user</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/User-f34162.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Commits List</name>
|
||||
<subscribe>scm-subscribe@mojo.codehaus.org</subscribe>
|
||||
<unsubscribe>scm-unsubscribe@mojo.codehaus.org</unsubscribe>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.scm</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Announcements List</name>
|
||||
<subscribe>announce-subscribe@mojo.codehaus.org</subscribe>
|
||||
<unsubscribe>announce-unsubscribe@mojo.codehaus.org</unsubscribe>
|
||||
<post>announce@mojo.codehaus.org</post>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.announce</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/Announce-f38303.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
|
||||
<!-- This has NO effect on mojo-projects using this parent.
|
||||
This just mean that you need maven 2.2.1 to build the mojo-parent -->
|
||||
<prerequisites>
|
||||
<maven>2.2.1</maven>
|
||||
</prerequisites>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/mojo/tags/mojo-parent-34</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/mojo-parent-34</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/mojo/tags/mojo-parent-34</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://jira.codehaus.org/browse/MOJO</url>
|
||||
</issueManagement>
|
||||
<ciManagement>
|
||||
<system>bamboo</system>
|
||||
<url>http://bamboo.ci.codehaus.org/browse/MOJO</url>
|
||||
</ciManagement>
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>codehaus.org</id>
|
||||
<name>Mojo Website</name>
|
||||
<url>dav:https://dav.codehaus.org/mojo/</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<mojo.javadoc.mavenVersion>${project.prerequisites.maven}</mojo.javadoc.mavenVersion>
|
||||
<mojo.java.target>1.5</mojo.java.target>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<!-- NOTE: We deliberately do not set maven.test.redirectTestOutputToFile here to workaround MNG-1992 -->
|
||||
<surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile>
|
||||
<!-- this property makes sure NetBeans 6.8+ picks up some formatting rules from checkstyle -->
|
||||
<netbeans.checkstyle.format>true</netbeans.checkstyle.format>
|
||||
</properties>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>codehaus-snapshots</id>
|
||||
<name>Codehaus Snapshots</name>
|
||||
<url>http://nexus.codehaus.org/snapshots/</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.11</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.4.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.13</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.1</version>
|
||||
<configuration>
|
||||
<source>${mojo.java.target}</source>
|
||||
<target>${mojo.java.target}</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.9</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.3.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<version>1.9</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.9.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>3.3</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>help-mojo</id>
|
||||
<goals>
|
||||
<goal>helpmojo</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.1</version>
|
||||
<configuration>
|
||||
<tagBase>https://svn.codehaus.org/mojo/tags</tagBase>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<arguments>-Pmojo-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.17</version>
|
||||
<configuration>
|
||||
<redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.17</version>
|
||||
</plugin>
|
||||
<!-- Codehaus plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
<version>1.11</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>l10n-maven-plugin</artifactId>
|
||||
<version>1.0-alpha-2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>1.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-maven-plugin</artifactId>
|
||||
<version>1.3.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>mojo-enforcer-rules</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<bannedDependencies>
|
||||
<excludes>
|
||||
<exclude>org.codehaus.plexus:plexus-component-api</exclude>
|
||||
</excludes>
|
||||
<message>The plexus-component-api conflicts with the plexus-container-default used by Maven. You probably added a dependency that is missing the exclusions.</message>
|
||||
</bannedDependencies>
|
||||
<requireNoRepositories>
|
||||
<message>Mojo is synchronized with repo1.maven.org. The rules for repo1.maven.org are that pom.xml files should not include repository definitions. If repository definitions are included, they must be limited to SNAPSHOT only repositories.</message>
|
||||
<banRepositories>true</banRepositories>
|
||||
<banPluginRepositories>true</banPluginRepositories>
|
||||
<allowSnapshotRepositories>true</allowSnapshotRepositories>
|
||||
<allowedPluginRepositories>
|
||||
<allowedPluginRepository>codehaus-snapshots</allowedPluginRepository>
|
||||
<allowedPluginRepository>apache.snapshots</allowedPluginRepository>
|
||||
</allowedPluginRepositories>
|
||||
</requireNoRepositories>
|
||||
<requirePluginVersions>
|
||||
<message>Best Practice is to always define plugin versions!</message>
|
||||
<banLatest>true</banLatest>
|
||||
<banRelease>true</banRelease>
|
||||
</requirePluginVersions>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav-jackrabbit</artifactId>
|
||||
<version>2.7</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>3.3</version>
|
||||
<configuration>
|
||||
<requirements>
|
||||
<!--
|
||||
NOTE: Maven 2.x does not interpolate properties of the form project.*|pom.* so the Maven Plugin Plugin
|
||||
gets garbage when manually examining the config of the Maven Compiler Plugin.
|
||||
-->
|
||||
<jdk>${mojo.java.target}</jdk>
|
||||
</requirements>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>cim</report>
|
||||
<report>dependency-info</report>
|
||||
<report>index</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>mailing-list</report>
|
||||
<report>project-team</report>
|
||||
<report>scm</report>
|
||||
<report>summary</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>mojo-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.apache.resources</groupId>
|
||||
<artifactId>apache-source-release-assembly-descriptor</artifactId>
|
||||
<version>1.0.4</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-source-release-distro</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>source-release</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<tarLongFileFormat>gnu</tarLongFileFormat>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<updateReleaseInfo>true</updateReleaseInfo>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>reporting</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipReports</name>
|
||||
<value>!true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.13</version>
|
||||
<configuration>
|
||||
<configLocation>config/maven_checks.xml</configLocation>
|
||||
<headerLocation>config/maven-header.txt</headerLocation>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>checkstyle</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.9.1</version>
|
||||
<configuration>
|
||||
<quiet>true</quiet>
|
||||
<links>
|
||||
<link>http://junit.sourceforge.net/javadoc/</link>
|
||||
</links>
|
||||
<tagletArtifacts>
|
||||
<tagletArtifact>
|
||||
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||
<artifactId>maven-plugin-tools-javadoc</artifactId>
|
||||
<version>3.3</version>
|
||||
</tagletArtifact>
|
||||
<tagletArtifact>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-javadoc</artifactId>
|
||||
<version>1.5.5</version>
|
||||
</tagletArtifact>
|
||||
</tagletArtifacts>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>javadoc</report>
|
||||
<report>test-javadoc</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.2</version>
|
||||
<configuration>
|
||||
<targetJdk>${mojo.java.target}</targetJdk>
|
||||
<rulesets>
|
||||
<ruleset>http://svn.codehaus.org/mojo/tags/mojo-parent-34/src/main/config/pmd/mojo_rules.xml</ruleset>
|
||||
</rulesets>
|
||||
<excludeRoots>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/antlr</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/javacc</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/modello</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/plugin</excludeRoot>
|
||||
</excludeRoots>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>cim</report>
|
||||
<report>dependencies</report>
|
||||
<report>dependency-convergence</report>
|
||||
<report>dependency-info</report>
|
||||
<report>dependency-management</report>
|
||||
<report>index</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>license</report>
|
||||
<report>mailing-list</report>
|
||||
<report>plugin-management</report>
|
||||
<report>project-team</report>
|
||||
<report>scm</report>
|
||||
<report>summary</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.17</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>report</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<!-- Codehaus plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
<configuration>
|
||||
<instrumentation>
|
||||
<excludes>
|
||||
<exclude>**/HelpMojo.class</exclude>
|
||||
</excludes>
|
||||
</instrumentation>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>maven-3</id>
|
||||
<activation>
|
||||
<file>
|
||||
<!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
|
||||
<exists>${basedir}</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<!-- if releasing current pom with maven 3 site descriptor must be attached -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<inherited>false</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-descriptor</id>
|
||||
<goals>
|
||||
<goal>attach-descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
803dc5cf36e504c5a48aa9a321f7fba1d6396733
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:05 CEST 2023
|
||||
mojo-parent-35.pom>central=
|
||||
@@ -0,0 +1,686 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
|
||||
<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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus</groupId>
|
||||
<artifactId>codehaus-parent</artifactId>
|
||||
<version>4</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>mojo-parent</artifactId>
|
||||
<version>35</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>MojoHaus Parent</name>
|
||||
<url>http://www.mojohaus.org</url>
|
||||
<organization>
|
||||
<name>MojoHaus</name>
|
||||
<url>http://www.mojohaus.org</url>
|
||||
</organization>
|
||||
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Development List</name>
|
||||
<subscribe>mojohaus-dev+subscribe@googlegroups.com</subscribe>
|
||||
<unsubscribe>mojohaus-dev+unsubscribe@googlegroups.com</unsubscribe>
|
||||
<post>mojohaus-dev@googlegroups.com</post>
|
||||
<archive>https://groups.google.com/forum/#!forum/mojohaus-dev</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Former (pre-2015-06) Development List</name>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.dev</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/Developer-f3.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Former (pre-2015-06) User List</name>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.user</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/User-f34162.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Former (pre-2015-06) Commits List</name>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.scm</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Former (pre-2015-06) Announcements List</name>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.announce</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/Announce-f38303.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
<!-- This has NO effect on mojo-projects using this parent.
|
||||
This just mean that you need maven 2.2.1 to build the mojo-parent -->
|
||||
<prerequisites>
|
||||
<maven>2.2.1</maven>
|
||||
</prerequisites>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/mojohaus/mojo-parent</connection>
|
||||
<developerConnection>scm:git:ssh://git@github.com/mojohaus/mojo-parent</developerConnection>
|
||||
<url>https://github.com/mojohaus/mojo-parent</url>
|
||||
<tag>mojo-parent-35</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>github</system>
|
||||
<url>https://github.com/mojohaus/mojo-parent/issues</url>
|
||||
</issueManagement>
|
||||
<ciManagement>
|
||||
<system>Travis</system>
|
||||
<url>https://travis-ci.org/mojohaus/${project.artifactId}</url>
|
||||
</ciManagement>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>ossrh-staging</id>
|
||||
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>ossrh-snapshots</id>
|
||||
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
|
||||
</snapshotRepository>
|
||||
<site>
|
||||
<id>github</id>
|
||||
<url>scm:git:ssh://git@github.com/mojohaus/mojo-parent.git</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<mojo.javadoc.mavenVersion>${project.prerequisites.maven}</mojo.javadoc.mavenVersion>
|
||||
<mojo.java.target>1.5</mojo.java.target>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<!-- NOTE: We deliberately do not set maven.test.redirectTestOutputToFile here to workaround MNG-1992 -->
|
||||
<surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile>
|
||||
<!-- this property makes sure NetBeans 6.8+ picks up some formatting rules from checkstyle -->
|
||||
<netbeans.checkstyle.format>true</netbeans.checkstyle.format>
|
||||
</properties>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>ossrh-snapshots</id>
|
||||
<layout>default</layout>
|
||||
<name>ossrh-snapshots</name>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<checksumPolicy>fail</checksumPolicy>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.11</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||
<artifactId>maven-plugin-annotations</artifactId>
|
||||
<!--must be same version of m-plugin-p -->
|
||||
<version>3.4</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.5.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.13</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>2.6.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.3</version>
|
||||
<configuration>
|
||||
<source>${mojo.java.target}</source>
|
||||
<target>${mojo.java.target}</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.3.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<version>1.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-ear-plugin</artifactId>
|
||||
<version>2.10.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.10.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>help-mojo</id>
|
||||
<goals>
|
||||
<goal>helpmojo</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
<configuration>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<arguments>-Pmojo-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-scm-publish-plugin</artifactId>
|
||||
<version>1.1</version>
|
||||
<configuration>
|
||||
<scmBranch>gh-pages</scmBranch>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.18.1</version>
|
||||
<configuration>
|
||||
<redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.18.1</version>
|
||||
</plugin>
|
||||
<!-- Codehaus plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
<version>1.11</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>l10n-maven-plugin</artifactId>
|
||||
<version>1.0-alpha-2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>1.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-maven-plugin</artifactId>
|
||||
<version>1.3.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>mojo-enforcer-rules</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<bannedDependencies>
|
||||
<excludes>
|
||||
<exclude>org.codehaus.plexus:plexus-component-api</exclude>
|
||||
</excludes>
|
||||
<message>The plexus-component-api conflicts with the plexus-container-default used by Maven. You probably added a dependency that is missing the exclusions.</message>
|
||||
</bannedDependencies>
|
||||
<requireNoRepositories>
|
||||
<message>Mojo is synchronized with repo1.maven.org. The rules for repo1.maven.org are that pom.xml files should not include repository definitions. If repository definitions are included, they must be limited to SNAPSHOT only repositories.</message>
|
||||
<banRepositories>true</banRepositories>
|
||||
<banPluginRepositories>true</banPluginRepositories>
|
||||
<allowSnapshotRepositories>true</allowSnapshotRepositories>
|
||||
<allowedPluginRepositories>
|
||||
<allowedPluginRepository>codehaus-snapshots</allowedPluginRepository>
|
||||
<allowedPluginRepository>apache.snapshots</allowedPluginRepository>
|
||||
</allowedPluginRepositories>
|
||||
</requireNoRepositories>
|
||||
<requirePluginVersions>
|
||||
<message>Best Practice is to always define plugin versions!</message>
|
||||
<banLatest>true</banLatest>
|
||||
<banRelease>true</banRelease>
|
||||
</requirePluginVersions>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
<configuration>
|
||||
<requirements>
|
||||
<!--
|
||||
NOTE: Maven 2.x does not interpolate properties of the form project.*|pom.* so the Maven Plugin Plugin
|
||||
gets garbage when manually examining the config of the Maven Compiler Plugin.
|
||||
-->
|
||||
<jdk>${mojo.java.target}</jdk>
|
||||
</requirements>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>cim</report>
|
||||
<report>dependency-info</report>
|
||||
<report>index</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>mailing-list</report>
|
||||
<report>project-team</report>
|
||||
<report>scm</report>
|
||||
<report>summary</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>mojo-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.apache.resources</groupId>
|
||||
<artifactId>apache-source-release-assembly-descriptor</artifactId>
|
||||
<version>1.0.4</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-source-release-distro</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>source-release</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<tarLongFileFormat>gnu</tarLongFileFormat>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<updateReleaseInfo>true</updateReleaseInfo>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<failOnError>false</failOnError>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>reporting</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipReports</name>
|
||||
<value>!true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.13</version>
|
||||
<configuration>
|
||||
<configLocation>config/maven_checks.xml</configLocation>
|
||||
<headerLocation>config/maven-header.txt</headerLocation>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>checkstyle</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.10.1</version>
|
||||
<configuration>
|
||||
<quiet>true</quiet>
|
||||
<links>
|
||||
<link>http://junit.sourceforge.net/javadoc/</link>
|
||||
</links>
|
||||
<tagletArtifacts>
|
||||
<tagletArtifact>
|
||||
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||
<artifactId>maven-plugin-tools-javadoc</artifactId>
|
||||
<version>3.3</version>
|
||||
</tagletArtifact>
|
||||
<tagletArtifact>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-javadoc</artifactId>
|
||||
<version>1.5.5</version>
|
||||
</tagletArtifact>
|
||||
</tagletArtifacts>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>javadoc</report>
|
||||
<report>test-javadoc</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
<configuration>
|
||||
<targetJdk>${mojo.java.target}</targetJdk>
|
||||
<excludeRoots>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/antlr</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/javacc</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/modello</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/plugin</excludeRoot>
|
||||
</excludeRoots>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>cim</report>
|
||||
<report>dependencies</report>
|
||||
<report>dependency-convergence</report>
|
||||
<report>dependency-info</report>
|
||||
<report>dependency-management</report>
|
||||
<report>index</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>license</report>
|
||||
<report>mailing-list</report>
|
||||
<report>plugin-management</report>
|
||||
<report>project-team</report>
|
||||
<report>scm</report>
|
||||
<report>summary</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.18.1</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>report</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<!-- Codehaus plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
<configuration>
|
||||
<instrumentation>
|
||||
<excludes>
|
||||
<exclude>**/HelpMojo.class</exclude>
|
||||
</excludes>
|
||||
</instrumentation>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>maven-3</id>
|
||||
<activation>
|
||||
<file>
|
||||
<!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
|
||||
<exists>${basedir}</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<!-- if releasing current pom with maven 3 site descriptor must be attached -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<inherited>false</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-descriptor</id>
|
||||
<goals>
|
||||
<goal>attach-descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
d4a37b8e88f695a8f8a8e904de7bc80af24958fb
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:46:43 CEST 2023
|
||||
maven-metadata-central.xml.lastUpdated=1692719203244
|
||||
Reference in New Issue
Block a user