|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <!--
|
3 | 3 |
|
4 |
| - Copyright (c) 2017, 2020 Oracle and/or its affiliates. All rights reserved. |
| 4 | + Copyright (c) 2017, 2021 Oracle and/or its affiliates. All rights reserved. |
5 | 5 |
|
6 | 6 | This program and the accompanying materials are made available under the
|
7 | 7 | terms of the Eclipse Public License v. 2.0, which is available at
|
|
22 | 22 | Project to create the Mojarra implementation jar.
|
23 | 23 |
|
24 | 24 | -->
|
25 |
| -<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> |
26 |
| - |
27 |
| - <parent> |
| 25 | +<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"> |
| 26 | + <modelVersion>4.0.0</modelVersion> |
| 27 | + |
| 28 | + <parent> |
28 | 29 | <groupId>org.glassfish</groupId>
|
29 | 30 | <artifactId>mojarra-parent</artifactId>
|
30 | 31 | <version>4.0.0-SNAPSHOT</version>
|
31 | 32 | </parent>
|
32 |
| - |
33 |
| - <artifactId>jakarta.faces</artifactId> |
34 |
| - <packaging>jar</packaging> |
35 |
| - |
36 |
| - <name>Mojarra ${project.version}</name> |
37 |
| - <description>EE4J Compatible Implementation for Jakarta Faces API</description> |
38 |
| - |
39 |
| - <properties> |
| 33 | + |
| 34 | + <artifactId>jakarta.faces</artifactId> |
| 35 | + <packaging>jar</packaging> |
| 36 | + |
| 37 | + <name>Mojarra ${project.version}</name> |
| 38 | + <description>EE4J Compatible Implementation for Jakarta Faces API</description> |
| 39 | + |
| 40 | + <properties> |
40 | 41 | <maven.compiler.source>11</maven.compiler.source>
|
41 | 42 | <maven.compiler.target>11</maven.compiler.target>
|
42 | 43 | <mojarra.logstrings.version>${project.version}</mojarra.logstrings.version>
|
43 | 44 | </properties>
|
44 |
| - |
45 |
| - |
46 |
| - <!-- ### D E P E N D E N C I E S ### --> |
47 |
| - |
48 |
| - <dependencies> |
| 45 | + |
| 46 | + <!-- ### D E P E N D E N C I E S ### --> |
| 47 | + <dependencies> |
49 | 48 | <!-- Jakarta EE Dependencies -->
|
50 | 49 |
|
51 | 50 | <dependency>
|
|
55 | 54 | <scope>provided</scope>
|
56 | 55 | </dependency>
|
57 | 56 |
|
58 |
| - <dependency> |
| 57 | + <dependency> |
59 | 58 | <groupId>jakarta.websocket</groupId>
|
60 | 59 | <artifactId>jakarta.websocket-api</artifactId>
|
61 | 60 | <version>2.0.0</version>
|
|
97 | 96 | <dependency>
|
98 | 97 | <groupId>jakarta.json</groupId>
|
99 | 98 | <artifactId>jakarta.json-api</artifactId>
|
100 |
| - <version>2.0.0</version> |
| 99 | + <version>2.0.1</version> |
101 | 100 | <scope>provided</scope>
|
102 | 101 | <optional>true</optional>
|
103 | 102 | </dependency>
|
|
138 | 137 | <dependency>
|
139 | 138 | <groupId>org.glassfish</groupId>
|
140 | 139 | <artifactId>jakarta.el</artifactId>
|
141 |
| - <version>4.0.0</version> |
| 140 | + <version>4.0.2</version> |
142 | 141 | <scope>test</scope>
|
143 | 142 | </dependency>
|
144 | 143 |
|
|
177 | 176 | <scope>test</scope>
|
178 | 177 | </dependency>
|
179 | 178 | </dependencies>
|
180 |
| - |
181 |
| - |
182 |
| - |
183 |
| - <build> |
| 179 | + |
| 180 | + <build> |
184 | 181 | <resources>
|
185 | 182 | <resource>
|
186 | 183 | <directory>src/main/resources</directory>
|
|
201 | 198 | </includes>
|
202 | 199 | </resource>
|
203 | 200 | </resources>
|
204 |
| - |
205 |
| - |
| 201 | + <pluginManagement> |
| 202 | + <plugins> |
| 203 | + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 204 | + <plugin> |
| 205 | + <groupId>org.eclipse.m2e</groupId> |
| 206 | + <artifactId>lifecycle-mapping</artifactId> |
| 207 | + <version>1.0.0</version> |
| 208 | + <configuration> |
| 209 | + <lifecycleMappingMetadata> |
| 210 | + <pluginExecutions> |
| 211 | + <pluginExecution> |
| 212 | + <pluginExecutionFilter> |
| 213 | + <groupId>net.alchim31.maven</groupId> |
| 214 | + <artifactId>yuicompressor-maven-plugin</artifactId> |
| 215 | + <versionRange>[1.5,)</versionRange> |
| 216 | + <goals> |
| 217 | + <goal>compress</goal> |
| 218 | + </goals> |
| 219 | + </pluginExecutionFilter> |
| 220 | + <action> |
| 221 | + <execute> |
| 222 | + <runOnIncremental>false</runOnIncremental> |
| 223 | + </execute> |
| 224 | + </action> |
| 225 | + </pluginExecution> |
| 226 | + </pluginExecutions> |
| 227 | + </lifecycleMappingMetadata> |
| 228 | + </configuration> |
| 229 | + </plugin> |
| 230 | + </plugins> |
| 231 | + </pluginManagement> |
206 | 232 | <plugins>
|
207 | 233 |
|
208 | 234 | <!-- ### C O M P R E S S / M I N I F Y faces.js ### -->
|
|
243 | 269 | <plugin>
|
244 | 270 | <groupId>org.codehaus.mojo</groupId>
|
245 | 271 | <artifactId>build-helper-maven-plugin</artifactId>
|
246 |
| - <version>3.0.0</version> |
| 272 | + <version>3.1.0</version> |
247 | 273 | <executions>
|
248 | 274 | <execution>
|
249 | 275 | <id>generate-resources</id>
|
|
277 | 303 | <plugin>
|
278 | 304 | <groupId>org.apache.felix</groupId>
|
279 | 305 | <artifactId>maven-bundle-plugin</artifactId>
|
280 |
| - <version>5.1.1</version> |
| 306 | + <version>5.1.2</version> |
281 | 307 | <extensions>true</extensions>
|
282 | 308 | <executions>
|
283 | 309 | <execution>
|
|
293 | 319 | <Bundle-SymbolicName>org.glassfish.jakarta.faces</Bundle-SymbolicName>
|
294 | 320 | <Bundle-Version>${project.version}</Bundle-Version>
|
295 | 321 | <Bundle-Name>Mojarra Faces Implementation ${project.version}</Bundle-Name>
|
296 |
| - <Bundle-Description>Eclipse Faces Implementation (jakarta.faces/3.0) ${project.version}</Bundle-Description> |
| 322 | + <Bundle-Description>Eclipse Faces Implementation (jakarta.faces/4.0) ${project.version}</Bundle-Description> |
297 | 323 |
|
298 | 324 | <Specification-Title>Jakarta Server Faces</Specification-Title>
|
299 |
| - <Specification-Version>3.0</Specification-Version> |
| 325 | + <Specification-Version>4.0</Specification-Version> |
300 | 326 |
|
301 | 327 | <Implementation-Title>Mojarra</Implementation-Title>
|
302 | 328 | <Implementation-Version>${project.version}</Implementation-Version>
|
|
361 | 387 | <plugin>
|
362 | 388 | <groupId>org.apache.maven.plugins</groupId>
|
363 | 389 | <artifactId>maven-jar-plugin</artifactId>
|
364 |
| - <version>2.4</version> |
| 390 | + <version>3.2.0</version> |
365 | 391 | <configuration>
|
366 | 392 | <archive>
|
367 | 393 | <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
|
408 | 434 | </executions>
|
409 | 435 | </plugin>
|
410 | 436 | </plugins>
|
411 |
| - |
412 |
| - |
413 |
| - <pluginManagement> |
414 |
| - <plugins> |
415 |
| - <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
416 |
| - <plugin> |
417 |
| - <groupId>org.eclipse.m2e</groupId> |
418 |
| - <artifactId>lifecycle-mapping</artifactId> |
419 |
| - <version>1.0.0</version> |
420 |
| - <configuration> |
421 |
| - <lifecycleMappingMetadata> |
422 |
| - <pluginExecutions> |
423 |
| - <pluginExecution> |
424 |
| - <pluginExecutionFilter> |
425 |
| - <groupId>net.alchim31.maven</groupId> |
426 |
| - <artifactId>yuicompressor-maven-plugin</artifactId> |
427 |
| - <versionRange>[1.5,)</versionRange> |
428 |
| - <goals> |
429 |
| - <goal>compress</goal> |
430 |
| - </goals> |
431 |
| - </pluginExecutionFilter> |
432 |
| - <action> |
433 |
| - <execute> |
434 |
| - <runOnIncremental>false</runOnIncremental> |
435 |
| - </execute> |
436 |
| - </action> |
437 |
| - </pluginExecution> |
438 |
| - </pluginExecutions> |
439 |
| - </lifecycleMappingMetadata> |
440 |
| - </configuration> |
441 |
| - </plugin> |
442 |
| - </plugins> |
443 |
| - </pluginManagement> |
444 | 437 | </build>
|
445 |
| - |
446 | 438 | </project>
|
0 commit comments