|
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, 2026 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 |
|
27 | 27 | <groupId>jakarta.json</groupId> |
28 | 28 | <artifactId>jakarta.json-spec</artifactId> |
29 | 29 | <packaging>pom</packaging> |
30 | | - <version>2.0-SNAPSHOT</version> |
| 30 | + <version>2.2-SNAPSHOT</version> |
31 | 31 | <name>Jakarta JSON Processing Specification</name> |
32 | 32 |
|
33 | 33 | <properties> |
|
38 | 38 | <!-- status: DRAFT, BETA, etc., or blank for final --> |
39 | 39 | <status>DRAFT</status> |
40 | 40 | <maven.build.timestamp.format>MMMM dd, yyyy</maven.build.timestamp.format> |
| 41 | + <maven.enforcer.plugin.version>3.6.2</maven.enforcer.plugin.version> |
41 | 42 | <revisiondate>${maven.build.timestamp}</revisiondate> |
42 | 43 | </properties> |
43 | 44 |
|
|
60 | 61 | <plugin> |
61 | 62 | <groupId>org.apache.maven.plugins</groupId> |
62 | 63 | <artifactId>maven-enforcer-plugin</artifactId> |
63 | | - <version>1.4.1</version> |
| 64 | + <version>${maven.enforcer.plugin.version}</version> |
64 | 65 | <executions> |
65 | 66 | <execution> |
66 | 67 | <id>enforce-versions</id> |
|
70 | 71 | <configuration> |
71 | 72 | <rules> |
72 | 73 | <requireJavaVersion> |
73 | | - <version>[1.8.0,)</version> |
74 | | - <message>You need JDK8 or higher</message> |
| 74 | + <version>[17,)</version> |
75 | 75 | </requireJavaVersion> |
| 76 | + <requireMavenVersion> |
| 77 | + <version>[3.9.0,)</version> |
| 78 | + </requireMavenVersion> |
76 | 79 | </rules> |
77 | 80 | </configuration> |
78 | 81 | </execution> |
|
142 | 145 | </execution> |
143 | 146 | </executions> |
144 | 147 | <configuration> |
145 | | - <sourceDocumentName>jsonp-spec.adoc</sourceDocumentName> |
146 | | - <sourceHighlighter>coderay</sourceHighlighter> |
| 148 | + <sourceDocumentName>jsonp-spec.adoc</sourceDocumentName> |
147 | 149 | <attributes> |
148 | 150 | <revnumber>${project.version}</revnumber> |
149 | 151 | <revremark>${status}</revremark> |
150 | 152 | <revdate>${revisiondate}</revdate> |
| 153 | + <source-highlighter>coderay</source-highlighter> |
151 | 154 | </attributes> |
152 | 155 | </configuration> |
153 | 156 |
|
|
0 commit comments