|
15 | 15 | <description>Modello Maven Plugin enables the use of Modello in Maven builds.</description> |
16 | 16 |
|
17 | 17 | <prerequisites> |
18 | | - <maven>${maven.version}</maven> |
| 18 | + <maven>${mavenVersion}</maven> |
19 | 19 | </prerequisites> |
20 | 20 |
|
21 | | - <properties> |
22 | | - <mavenPluginTools>3.11.0</mavenPluginTools> |
23 | | - </properties> |
24 | | - |
25 | 21 | <dependencies> |
26 | 22 | <dependency> |
27 | 23 | <groupId>org.apache.maven</groupId> |
28 | 24 | <artifactId>maven-plugin-api</artifactId> |
29 | | - <version>${maven.version}</version> |
| 25 | + <version>${mavenVersion}</version> |
30 | 26 | <scope>provided</scope> |
31 | 27 | </dependency> |
32 | 28 | <dependency> |
|
36 | 32 | <dependency> |
37 | 33 | <groupId>org.apache.maven</groupId> |
38 | 34 | <artifactId>maven-model</artifactId> |
39 | | - <version>${maven.version}</version> |
| 35 | + <version>${mavenVersion}</version> |
40 | 36 | <scope>provided</scope> |
41 | 37 | </dependency> |
42 | 38 | <dependency> |
43 | 39 | <groupId>org.apache.maven</groupId> |
44 | 40 | <artifactId>maven-core</artifactId> |
45 | | - <version>${maven.version}</version> |
| 41 | + <version>${mavenVersion}</version> |
46 | 42 | <scope>provided</scope> |
47 | 43 | </dependency> |
48 | 44 | <dependency> |
|
52 | 48 | <dependency> |
53 | 49 | <groupId>org.apache.maven.plugin-tools</groupId> |
54 | 50 | <artifactId>maven-plugin-annotations</artifactId> |
55 | | - <version>${mavenPluginTools}</version> |
56 | 51 | <scope>provided</scope> |
57 | 52 | </dependency> |
58 | 53 |
|
|
126 | 121 | </dependency> |
127 | 122 | </dependencies> |
128 | 123 |
|
129 | | - <build> |
130 | | - <pluginManagement> |
131 | | - <plugins> |
132 | | - <plugin> |
133 | | - <groupId>org.apache.maven.plugins</groupId> |
134 | | - <artifactId>maven-plugin-plugin</artifactId> |
135 | | - <version>${mavenPluginTools}</version> |
136 | | - <configuration> |
137 | | - <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> |
138 | | - </configuration> |
139 | | - </plugin> |
140 | | - </plugins> |
141 | | - </pluginManagement> |
142 | | - <plugins> |
143 | | - <plugin> |
144 | | - <groupId>org.apache.maven.plugins</groupId> |
145 | | - <artifactId>maven-plugin-plugin</artifactId> |
146 | | - <executions> |
147 | | - <execution> |
148 | | - <id>mojo-descriptor</id> |
149 | | - <goals> |
150 | | - <goal>descriptor</goal> |
151 | | - </goals> |
152 | | - </execution> |
153 | | - <execution> |
154 | | - <id>generated-helpmojo</id> |
155 | | - <goals> |
156 | | - <goal>helpmojo</goal> |
157 | | - </goals> |
158 | | - </execution> |
159 | | - </executions> |
160 | | - </plugin> |
161 | | - </plugins> |
162 | | - </build> |
163 | | - |
164 | 124 | <reporting> |
165 | 125 | <plugins> |
166 | 126 | <plugin> |
167 | 127 | <groupId>org.apache.maven.plugins</groupId> |
168 | | - <artifactId>maven-plugin-plugin</artifactId> |
| 128 | + <artifactId>maven-plugin-report-plugin</artifactId> |
169 | 129 | </plugin> |
170 | 130 | </plugins> |
171 | 131 | </reporting> |
|
0 commit comments