-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#758: First stage of the module split
- Loading branch information
1 parent
80fba46
commit 80bf105
Showing
988 changed files
with
845 additions
and
672 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
<?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"> | ||
<parent> | ||
<artifactId>versions</artifactId> | ||
<groupId>org.codehaus.mojo.versions</groupId> | ||
<version>2.14.0-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>model-report</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-utils</artifactId> | ||
<version>3.4.2</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.modello</groupId> | ||
<artifactId>modello-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>generate-rule</id> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<!-- Generate the xpp3 reader code --> | ||
<goal>xpp3-reader</goal> | ||
<!-- Generate the xpp3 writer code --> | ||
<goal>xpp3-writer</goal> | ||
<!-- Generate the Java sources for the model itself --> | ||
<goal>java</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>site-doc</id> | ||
<phase>pre-site</phase> | ||
<goals> | ||
<goal>xdoc</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>site-xsd</id> | ||
<phase>pre-site</phase> | ||
<goals> | ||
<goal>xsd</goal> | ||
</goals> | ||
<configuration> | ||
<outputDirectory>${project.build.directory}/generated-site/resources/xsd</outputDirectory> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<models> | ||
<model>src/main/mdo/dependency-updates-report.mdo</model> | ||
<model>src/main/mdo/plugin-updates-report.mdo</model> | ||
</models> | ||
<version>${modelloNamespaceVersion}</version> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>animal-sniffer-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>check-java18</id> | ||
<phase>test</phase> | ||
<goals> | ||
<goal>check</goal> | ||
</goals> | ||
<configuration> | ||
<signature> | ||
<groupId>org.codehaus.mojo.signature</groupId> | ||
<artifactId>java18</artifactId> | ||
<version>1.0</version> | ||
</signature> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
|
||
</build> | ||
|
||
</project> |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<?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"> | ||
<parent> | ||
<artifactId>versions</artifactId> | ||
<groupId>org.codehaus.mojo.versions</groupId> | ||
<version>2.14.0-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>model</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-utils</artifactId> | ||
<version>3.4.2</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.modello</groupId> | ||
<artifactId>modello-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>generate-rule</id> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<!-- Generate the xpp3 reader code --> | ||
<goal>xpp3-reader</goal> | ||
<!-- Generate the xpp3 writer code --> | ||
<goal>xpp3-writer</goal> | ||
<!-- Generate the Java sources for the model itself --> | ||
<goal>java</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>site-doc</id> | ||
<phase>pre-site</phase> | ||
<goals> | ||
<goal>xdoc</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>site-xsd</id> | ||
<phase>pre-site</phase> | ||
<goals> | ||
<goal>xsd</goal> | ||
</goals> | ||
<configuration> | ||
<outputDirectory>${project.build.directory}/generated-site/resources/xsd</outputDirectory> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<models> | ||
<model>src/main/mdo/rule.mdo</model> | ||
</models> | ||
<version>${modelloNamespaceVersion}</version> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>animal-sniffer-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>check-java18</id> | ||
<phase>test</phase> | ||
<goals> | ||
<goal>check</goal> | ||
</goals> | ||
<configuration> | ||
<signature> | ||
<groupId>org.codehaus.mojo.signature</groupId> | ||
<artifactId>java18</artifactId> | ||
<version>1.0</version> | ||
</signature> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
|
||
</build> | ||
|
||
</project> |
File renamed without changes.
Oops, something went wrong.