Skip to content
This repository was archived by the owner on Nov 7, 2024. It is now read-only.

Commit 5748bbf

Browse files
committed
fix spec version plugin
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
1 parent a520d0e commit 5748bbf

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

api/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@
105105
<nonFinal>${non.final}</nonFinal>
106106
<jarType>api</jarType>
107107
<specVersion>${spec_version}</specVersion>
108-
<specImplVersion>${spec_impl_version}</specImplVersion>
108+
<specImplVersion>${project.version}</specImplVersion>
109+
<newSpecVersion>${new_spec_version}</newSpecVersion>
109110
<apiPackage>${api_package}</apiPackage>
110111
</spec>
111112
</configuration>

impl/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,10 @@
113113
<nonFinal>${non.final}</nonFinal>
114114
<jarType>impl</jarType>
115115
<specVersion>${spec_version}</specVersion>
116-
<specImplVersion>${spec_impl_version}</specImplVersion>
116+
<newSpecVersion>${new_spec_version}</newSpecVersion>
117+
<specImplVersion>${project.version}</specImplVersion>
117118
<implVersion>${impl_version}</implVersion>
119+
<newImplVersion>${project.version}</newImplVersion>
118120
<apiPackage>javax.json</apiPackage>
119121
<implNamespace>org.glassfish</implNamespace>
120122
</spec>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@
9898
<properties>
9999
<api_package>javax.json</api_package>
100100
<impl_namespace>org.glassfish</impl_namespace>
101-
<spec_version>1.1</spec_version>
102-
<spec_impl_version>1.1.0-SNAPSHOT</spec_impl_version>
103-
<impl_version>1.1.0-SNAPSHOT</impl_version>
101+
<spec_version>1.0</spec_version>
102+
<new_spec_version>1.1</new_spec_version>
103+
<impl_version>1.0.4</impl_version>
104104
<packages.private>org.glassfish.*</packages.private>
105105
<packages.export>javax.json.*</packages.export>
106106
<non.final>false</non.final>
@@ -275,12 +275,12 @@
275275
<dependency>
276276
<groupId>javax.json</groupId>
277277
<artifactId>javax.json-api</artifactId>
278-
<version>${spec_impl_version}</version>
278+
<version>${project.version}</version>
279279
</dependency>
280280
<dependency>
281281
<groupId>org.glassfish</groupId>
282282
<artifactId>javax.json</artifactId>
283-
<version>${impl_version}</version>
283+
<version>${project.version}</version>
284284
</dependency>
285285
<dependency>
286286
<groupId>javax.ws.rs</groupId>

0 commit comments

Comments
 (0)