|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | - |
3 | | - |
4 | 2 | <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"> |
5 | 3 | <modelVersion>4.0.0</modelVersion> |
6 | 4 |
|
| 5 | + <parent> |
| 6 | + <groupId>org.eclipse.jetty</groupId> |
| 7 | + <artifactId>jetty-parent</artifactId> |
| 8 | + <version>31</version> |
| 9 | + </parent> |
| 10 | + |
7 | 11 | <groupId>org.eclipse.jetty.toolchain</groupId> |
8 | 12 | <artifactId>jetty-modify-sources-maven-plugin</artifactId> |
9 | 13 | <version>1.0.14-SNAPSHOT</version> |
10 | 14 | <packaging>maven-plugin</packaging> |
11 | 15 |
|
12 | 16 | <name>jetty-modify-sources-maven-plugin Maven Plugin</name> |
13 | 17 |
|
14 | | - <url>https://github.com/jetty-project/${project.artifactId}</url> |
15 | | - |
16 | 18 | <description>Maven Plugin used for Jetty 12 to transform sources and resources using jakarta namespace to EE8 javax namespace</description> |
17 | | - <prerequisites> |
18 | | - <maven>3.8.2</maven> |
19 | | - </prerequisites> |
| 19 | + |
| 20 | + <url>https://github.com/jetty-project/${project.artifactId}</url> |
20 | 21 |
|
21 | 22 | <organization> |
22 | 23 | <name>Mort Bay Consulting</name> |
|
33 | 34 | </license> |
34 | 35 | </licenses> |
35 | 36 |
|
| 37 | + <developers> |
| 38 | + <developer> |
| 39 | + <id>olamy</id> |
| 40 | + <name>Olivier Lamy</name> |
| 41 | + |
| 42 | + <organization>Webtide, LLC</organization> |
| 43 | + <organizationUrl>https://webtide.com</organizationUrl> |
| 44 | + <timezone>Australia/Brisbane</timezone> |
| 45 | + </developer> |
| 46 | + </developers> |
| 47 | + <prerequisites> |
| 48 | + <maven>3.8.2</maven> |
| 49 | + </prerequisites> |
| 50 | + |
36 | 51 | <scm> |
37 | 52 | <connection>scm:git:https://github.com/jetty-project/${project.artifactId}.git</connection> |
38 | | - < developerConnection>scm:git: [email protected]:jetty-project/ ${project.artifactId}.git</ developerConnection> |
39 | | - <url>https://github.com/jetty-project/${project.artifactId}</url> |
| 53 | + <developerConnection>scm:git:https://github.com/jetty-project/${project.artifactId}.git</developerConnection> |
40 | 54 | <tag>HEAD</tag> |
| 55 | + <url>https://github.com/jetty-project/${project.artifactId}</url> |
41 | 56 | </scm> |
42 | 57 | <issueManagement> |
43 | 58 | <system>github</system> |
44 | 59 | <url>https://github.com/jetty-project/${project.artifactId}/issues</url> |
45 | 60 | </issueManagement> |
46 | 61 |
|
47 | 62 | <properties> |
48 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
49 | | - <maven.compiler.source>11</maven.compiler.source> |
50 | | - <maven.compiler.target>11</maven.compiler.target> |
51 | | - <maven.version>3.9.5</maven.version> |
52 | 63 | <javaparser.version>3.26.4</javaparser.version> |
| 64 | + <jdk.version.minimum>17</jdk.version.minimum> |
| 65 | + <maven.version>3.9.5</maven.version> |
| 66 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
53 | 67 | </properties> |
54 | 68 |
|
55 | | - <developers> |
56 | | - <developer> |
57 | | - <id>olamy</id> |
58 | | - <name>Olivier Lamy</name> |
59 | | - |
60 | | - <organization>Webtide, LLC</organization> |
61 | | - <organizationUrl>https://webtide.com</organizationUrl> |
62 | | - <timezone>Australia/Brisbane</timezone> |
63 | | - </developer> |
64 | | - </developers> |
65 | | - |
66 | | - <distributionManagement> |
67 | | - <repository> |
68 | | - <id>oss.sonatype.org</id> |
69 | | - <name>Jetty Staging Repository</name> |
70 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
71 | | - </repository> |
72 | | - <snapshotRepository> |
73 | | - <id>oss.sonatype.org</id> |
74 | | - <name>Jetty Snapshot Repository</name> |
75 | | - <url>https://oss.sonatype.org/content/repositories/jetty-snapshots/</url> |
76 | | - </snapshotRepository> |
77 | | - </distributionManagement> |
78 | | - |
79 | 69 | <dependencies> |
80 | 70 | <dependency> |
81 | 71 | <groupId>com.github.javaparser</groupId> |
82 | 72 | <artifactId>javaparser-core</artifactId> |
83 | 73 | <version>${javaparser.version}</version> |
84 | 74 | </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>commons-io</groupId> |
| 77 | + <artifactId>commons-io</artifactId> |
| 78 | + <version>2.20.0</version> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.apache.commons</groupId> |
| 82 | + <artifactId>commons-lang3</artifactId> |
| 83 | + <version>3.17.0</version> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>org.apache.commons</groupId> |
| 87 | + <artifactId>commons-text</artifactId> |
| 88 | + <version>1.13.1</version> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>org.apache.maven.shared</groupId> |
| 92 | + <artifactId>maven-filtering</artifactId> |
| 93 | + <version>3.4.0</version> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>org.hamcrest</groupId> |
| 97 | + <artifactId>hamcrest</artifactId> |
| 98 | + <version>3.0</version> |
| 99 | + </dependency> |
85 | 100 | <dependency> |
86 | 101 | <groupId>org.apache.maven</groupId> |
87 | | - <artifactId>maven-plugin-api</artifactId> |
| 102 | + <artifactId>maven-artifact</artifactId> |
88 | 103 | <version>${maven.version}</version> |
89 | 104 | <scope>provided</scope> |
90 | 105 | </dependency> |
|
96 | 111 | </dependency> |
97 | 112 | <dependency> |
98 | 113 | <groupId>org.apache.maven</groupId> |
99 | | - <artifactId>maven-artifact</artifactId> |
| 114 | + <artifactId>maven-plugin-api</artifactId> |
100 | 115 | <version>${maven.version}</version> |
101 | 116 | <scope>provided</scope> |
102 | 117 | </dependency> |
103 | | - <dependency> |
104 | | - <groupId>org.apache.maven</groupId> |
105 | | - <artifactId>maven-compat</artifactId> |
106 | | - <version>${maven.version}</version> |
107 | | - <scope>test</scope> |
108 | | - </dependency> |
109 | 118 | <dependency> |
110 | 119 | <groupId>org.apache.maven.plugin-tools</groupId> |
111 | 120 | <artifactId>maven-plugin-annotations</artifactId> |
112 | 121 | <version>3.15.1</version> |
113 | 122 | <scope>provided</scope> |
114 | 123 | </dependency> |
115 | | - <dependency> |
116 | | - <groupId>org.apache.maven.shared</groupId> |
117 | | - <artifactId>maven-filtering</artifactId> |
118 | | - <version>3.4.0</version> |
119 | | - </dependency> |
120 | | - <dependency> |
121 | | - <groupId>commons-io</groupId> |
122 | | - <artifactId>commons-io</artifactId> |
123 | | - <version>2.20.0</version> |
124 | | - </dependency> |
125 | | - <dependency> |
126 | | - <groupId>org.apache.commons</groupId> |
127 | | - <artifactId>commons-lang3</artifactId> |
128 | | - <version>3.17.0</version> |
129 | | - </dependency> |
130 | | - <dependency> |
131 | | - <groupId>org.apache.commons</groupId> |
132 | | - <artifactId>commons-text</artifactId> |
133 | | - <version>1.13.1</version> |
134 | | - </dependency> |
135 | 124 | <dependency> |
136 | 125 | <groupId>junit</groupId> |
137 | 126 | <artifactId>junit</artifactId> |
138 | 127 | <version>4.13.2</version> |
139 | 128 | <scope>test</scope> |
140 | 129 | </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>org.apache.maven</groupId> |
| 132 | + <artifactId>maven-compat</artifactId> |
| 133 | + <version>${maven.version}</version> |
| 134 | + <scope>test</scope> |
| 135 | + </dependency> |
141 | 136 | <dependency> |
142 | 137 | <groupId>org.apache.maven.plugin-testing</groupId> |
143 | 138 | <artifactId>maven-plugin-testing-harness</artifactId> |
|
150 | 145 | <version>1.7.36</version> |
151 | 146 | <scope>test</scope> |
152 | 147 | </dependency> |
153 | | - <dependency> |
154 | | - <groupId>org.hamcrest</groupId> |
155 | | - <artifactId>hamcrest</artifactId> |
156 | | - <version>3.0</version> |
157 | | - </dependency> |
158 | 148 | </dependencies> |
159 | 149 |
|
160 | 150 | <build> |
|
167 | 157 | </plugin> |
168 | 158 | <plugin> |
169 | 159 | <groupId>org.apache.maven.plugins</groupId> |
170 | | - <artifactId>maven-resources-plugin</artifactId> |
171 | | - <version>3.3.1</version> |
| 160 | + <artifactId>maven-compiler-plugin</artifactId> |
| 161 | + <version>3.12.1</version> |
172 | 162 | </plugin> |
173 | 163 | <plugin> |
174 | 164 | <groupId>org.apache.maven.plugins</groupId> |
175 | | - <artifactId>maven-compiler-plugin</artifactId> |
176 | | - <version>3.12.1</version> |
| 165 | + <artifactId>maven-deploy-plugin</artifactId> |
| 166 | + <version>3.1.4</version> |
177 | 167 | </plugin> |
178 | 168 | <plugin> |
179 | 169 | <groupId>org.apache.maven.plugins</groupId> |
|
182 | 172 | </plugin> |
183 | 173 | <plugin> |
184 | 174 | <groupId>org.apache.maven.plugins</groupId> |
185 | | - <artifactId>maven-plugin-plugin</artifactId> |
186 | | - <version>3.11.0</version> |
| 175 | + <artifactId>maven-install-plugin</artifactId> |
| 176 | + <version>3.1.4</version> |
187 | 177 | </plugin> |
188 | 178 | <plugin> |
189 | 179 | <groupId>org.apache.maven.plugins</groupId> |
190 | | - <artifactId>maven-surefire-plugin</artifactId> |
191 | | - <version>3.5.3</version> |
| 180 | + <artifactId>maven-invoker-plugin</artifactId> |
| 181 | + <version>3.9.1</version> |
192 | 182 | </plugin> |
193 | 183 | <plugin> |
194 | 184 | <groupId>org.apache.maven.plugins</groupId> |
|
202 | 192 | </plugin> |
203 | 193 | <plugin> |
204 | 194 | <groupId>org.apache.maven.plugins</groupId> |
205 | | - <artifactId>maven-install-plugin</artifactId> |
206 | | - <version>3.1.4</version> |
| 195 | + <artifactId>maven-plugin-plugin</artifactId> |
| 196 | + <version>3.11.0</version> |
207 | 197 | </plugin> |
208 | 198 | <plugin> |
209 | 199 | <groupId>org.apache.maven.plugins</groupId> |
210 | | - <artifactId>maven-deploy-plugin</artifactId> |
211 | | - <version>3.1.4</version> |
| 200 | + <artifactId>maven-release-plugin</artifactId> |
| 201 | + <version>3.1.1</version> |
| 202 | + <configuration> |
| 203 | + <useReleaseProfile>false</useReleaseProfile> |
| 204 | + <goals>deploy</goals> |
| 205 | + <arguments>-Peclipse-release -DskipTests</arguments> |
| 206 | + <preparationGoals>clean install</preparationGoals> |
| 207 | + <mavenExecutorId>forked-path</mavenExecutorId> |
| 208 | + <localCheckout>true</localCheckout> |
| 209 | + </configuration> |
212 | 210 | </plugin> |
213 | 211 | <plugin> |
214 | 212 | <groupId>org.apache.maven.plugins</groupId> |
215 | | - <artifactId>maven-invoker-plugin</artifactId> |
216 | | - <version>3.9.1</version> |
| 213 | + <artifactId>maven-resources-plugin</artifactId> |
| 214 | + <version>3.3.1</version> |
217 | 215 | </plugin> |
218 | 216 | <plugin> |
219 | 217 | <groupId>org.apache.maven.plugins</groupId> |
|
222 | 220 | </plugin> |
223 | 221 | <plugin> |
224 | 222 | <groupId>org.apache.maven.plugins</groupId> |
225 | | - <artifactId>maven-release-plugin</artifactId> |
226 | | - <version>3.1.1</version> |
227 | | - <configuration> |
228 | | - <useReleaseProfile>false</useReleaseProfile> |
229 | | - <goals>deploy</goals> |
230 | | - <arguments>-Peclipse-release -DskipTests</arguments> |
231 | | - <preparationGoals>clean install</preparationGoals> |
232 | | - <mavenExecutorId>forked-path</mavenExecutorId> |
233 | | - <localCheckout>true</localCheckout> |
234 | | - </configuration> |
| 223 | + <artifactId>maven-surefire-plugin</artifactId> |
| 224 | + <version>3.5.3</version> |
235 | 225 | </plugin> |
236 | 226 | </plugins> |
237 | 227 | </pluginManagement> |
238 | 228 | <plugins> |
239 | | - <plugin> |
240 | | - <groupId>org.apache.maven.plugins</groupId> |
241 | | - <artifactId>maven-plugin-plugin</artifactId> |
242 | | - <version>3.11.0</version> |
243 | | - <configuration> |
244 | | - <!-- <goalPrefix>maven-archetype-plugin</goalPrefix> --> |
245 | | - <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> |
246 | | - </configuration> |
247 | | - <executions> |
248 | | - <execution> |
249 | | - <id>mojo-descriptor</id> |
250 | | - <goals> |
251 | | - <goal>descriptor</goal> |
252 | | - </goals> |
253 | | - </execution> |
254 | | - <execution> |
255 | | - <id>help-goal</id> |
256 | | - <goals> |
257 | | - <goal>helpmojo</goal> |
258 | | - </goals> |
259 | | - </execution> |
260 | | - </executions> |
261 | | - </plugin> |
262 | 229 | <plugin> |
263 | 230 | <groupId>org.apache.maven.plugins</groupId> |
264 | 231 | <artifactId>maven-invoker-plugin</artifactId> |
|
288 | 255 | </execution> |
289 | 256 | </executions> |
290 | 257 | </plugin> |
| 258 | + <plugin> |
| 259 | + <groupId>org.apache.maven.plugins</groupId> |
| 260 | + <artifactId>maven-plugin-plugin</artifactId> |
| 261 | + <version>3.11.0</version> |
| 262 | + <configuration> |
| 263 | + <!-- <goalPrefix>maven-archetype-plugin</goalPrefix> --> |
| 264 | + <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> |
| 265 | + </configuration> |
| 266 | + <executions> |
| 267 | + <execution> |
| 268 | + <id>help-goal</id> |
| 269 | + <goals> |
| 270 | + <goal>helpmojo</goal> |
| 271 | + </goals> |
| 272 | + </execution> |
| 273 | + <execution> |
| 274 | + <id>mojo-descriptor</id> |
| 275 | + <goals> |
| 276 | + <goal>descriptor</goal> |
| 277 | + </goals> |
| 278 | + </execution> |
| 279 | + </executions> |
| 280 | + </plugin> |
291 | 281 | </plugins> |
292 | 282 | </build> |
293 | | - <profiles> |
294 | | - <profile> |
295 | | - <id>eclipse-release</id> |
296 | | - <build> |
297 | | - <plugins> |
298 | | - <plugin> |
299 | | - <inherited>true</inherited> |
300 | | - <groupId>org.apache.maven.plugins</groupId> |
301 | | - <artifactId>maven-deploy-plugin</artifactId> |
302 | | - </plugin> |
303 | | - <plugin> |
304 | | - <groupId>org.apache.maven.plugins</groupId> |
305 | | - <artifactId>maven-source-plugin</artifactId> |
306 | | - <executions> |
307 | | - <execution> |
308 | | - <id>attach-sources</id> |
309 | | - <goals> |
310 | | - <goal>jar</goal> |
311 | | - </goals> |
312 | | - </execution> |
313 | | - </executions> |
314 | | - </plugin> |
315 | | - <plugin> |
316 | | - <groupId>org.apache.maven.plugins</groupId> |
317 | | - <artifactId>maven-javadoc-plugin</artifactId> |
318 | | - <executions> |
319 | | - <execution> |
320 | | - <id>attach-javadocs</id> |
321 | | - <goals> |
322 | | - <goal>jar</goal> |
323 | | - </goals> |
324 | | - </execution> |
325 | | - </executions> |
326 | | - </plugin> |
327 | | - <plugin> |
328 | | - <groupId>org.apache.maven.plugins</groupId> |
329 | | - <artifactId>maven-gpg-plugin</artifactId> |
330 | | - <executions> |
331 | | - <execution> |
332 | | - <id>sign-artifacts</id> |
333 | | - <phase>verify</phase> |
334 | | - <goals> |
335 | | - <goal>sign</goal> |
336 | | - </goals> |
337 | | - </execution> |
338 | | - </executions> |
339 | | - </plugin> |
340 | | - </plugins> |
341 | | - </build> |
342 | | - </profile> |
343 | | - </profiles> |
| 283 | + |
344 | 284 | </project> |
0 commit comments