Skip to content

Commit 2bd0114

Browse files
committed
#758: First stage of the module split
1 parent 6647b8d commit 2bd0114

File tree

988 files changed

+845
-672
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

988 files changed

+845
-672
lines changed

model-report/pom.xml

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>versions</artifactId>
7+
<groupId>org.codehaus.mojo.versions</groupId>
8+
<version>2.14.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>model-report</artifactId>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>org.codehaus.plexus</groupId>
17+
<artifactId>plexus-utils</artifactId>
18+
<version>3.4.2</version>
19+
</dependency>
20+
</dependencies>
21+
22+
<build>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.codehaus.modello</groupId>
26+
<artifactId>modello-maven-plugin</artifactId>
27+
<executions>
28+
<execution>
29+
<id>generate-rule</id>
30+
<phase>generate-sources</phase>
31+
<goals>
32+
<!-- Generate the xpp3 reader code -->
33+
<goal>xpp3-reader</goal>
34+
<!-- Generate the xpp3 writer code -->
35+
<goal>xpp3-writer</goal>
36+
<!-- Generate the Java sources for the model itself -->
37+
<goal>java</goal>
38+
</goals>
39+
</execution>
40+
<execution>
41+
<id>site-doc</id>
42+
<phase>pre-site</phase>
43+
<goals>
44+
<goal>xdoc</goal>
45+
</goals>
46+
</execution>
47+
<execution>
48+
<id>site-xsd</id>
49+
<phase>pre-site</phase>
50+
<goals>
51+
<goal>xsd</goal>
52+
</goals>
53+
<configuration>
54+
<outputDirectory>${project.build.directory}/generated-site/resources/xsd</outputDirectory>
55+
</configuration>
56+
</execution>
57+
</executions>
58+
<configuration>
59+
<models>
60+
<model>src/main/mdo/dependency-updates-report.mdo</model>
61+
<model>src/main/mdo/plugin-updates-report.mdo</model>
62+
</models>
63+
<version>${modelloNamespaceVersion}</version>
64+
</configuration>
65+
</plugin>
66+
67+
<plugin>
68+
<artifactId>maven-javadoc-plugin</artifactId>
69+
<configuration>
70+
<skip>true</skip>
71+
</configuration>
72+
</plugin>
73+
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-checkstyle-plugin</artifactId>
77+
<configuration>
78+
<skip>true</skip>
79+
</configuration>
80+
</plugin>
81+
82+
<plugin>
83+
<groupId>org.codehaus.mojo</groupId>
84+
<artifactId>animal-sniffer-maven-plugin</artifactId>
85+
<executions>
86+
<execution>
87+
<id>check-java18</id>
88+
<phase>test</phase>
89+
<goals>
90+
<goal>check</goal>
91+
</goals>
92+
<configuration>
93+
<signature>
94+
<groupId>org.codehaus.mojo.signature</groupId>
95+
<artifactId>java18</artifactId>
96+
<version>1.0</version>
97+
</signature>
98+
</configuration>
99+
</execution>
100+
</executions>
101+
</plugin>
102+
</plugins>
103+
104+
</build>
105+
106+
</project>

model/pom.xml

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>versions</artifactId>
7+
<groupId>org.codehaus.mojo.versions</groupId>
8+
<version>2.14.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>model</artifactId>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>org.codehaus.plexus</groupId>
17+
<artifactId>plexus-utils</artifactId>
18+
<version>3.4.2</version>
19+
</dependency>
20+
</dependencies>
21+
22+
<build>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.codehaus.modello</groupId>
26+
<artifactId>modello-maven-plugin</artifactId>
27+
<executions>
28+
<execution>
29+
<id>generate-rule</id>
30+
<phase>generate-sources</phase>
31+
<goals>
32+
<!-- Generate the xpp3 reader code -->
33+
<goal>xpp3-reader</goal>
34+
<!-- Generate the xpp3 writer code -->
35+
<goal>xpp3-writer</goal>
36+
<!-- Generate the Java sources for the model itself -->
37+
<goal>java</goal>
38+
</goals>
39+
</execution>
40+
<execution>
41+
<id>site-doc</id>
42+
<phase>pre-site</phase>
43+
<goals>
44+
<goal>xdoc</goal>
45+
</goals>
46+
</execution>
47+
<execution>
48+
<id>site-xsd</id>
49+
<phase>pre-site</phase>
50+
<goals>
51+
<goal>xsd</goal>
52+
</goals>
53+
<configuration>
54+
<outputDirectory>${project.build.directory}/generated-site/resources/xsd</outputDirectory>
55+
</configuration>
56+
</execution>
57+
</executions>
58+
<configuration>
59+
<models>
60+
<model>src/main/mdo/rule.mdo</model>
61+
</models>
62+
<version>${modelloNamespaceVersion}</version>
63+
</configuration>
64+
</plugin>
65+
66+
<plugin>
67+
<artifactId>maven-javadoc-plugin</artifactId>
68+
<configuration>
69+
<skip>true</skip>
70+
</configuration>
71+
</plugin>
72+
73+
<plugin>
74+
<groupId>org.apache.maven.plugins</groupId>
75+
<artifactId>maven-checkstyle-plugin</artifactId>
76+
<configuration>
77+
<skip>true</skip>
78+
</configuration>
79+
</plugin>
80+
81+
<plugin>
82+
<groupId>org.codehaus.mojo</groupId>
83+
<artifactId>animal-sniffer-maven-plugin</artifactId>
84+
<executions>
85+
<execution>
86+
<id>check-java18</id>
87+
<phase>test</phase>
88+
<goals>
89+
<goal>check</goal>
90+
</goals>
91+
<configuration>
92+
<signature>
93+
<groupId>org.codehaus.mojo.signature</groupId>
94+
<artifactId>java18</artifactId>
95+
<version>1.0</version>
96+
</signature>
97+
</configuration>
98+
</execution>
99+
</executions>
100+
</plugin>
101+
</plugins>
102+
103+
</build>
104+
105+
</project>
File renamed without changes.

0 commit comments

Comments
 (0)