Skip to content

Commit 7af305c

Browse files
committed
Fix module versioning
1 parent 6613050 commit 7af305c

4 files changed

Lines changed: 22 additions & 18 deletions

File tree

gbfs-validator-java-api/pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<dependency>
9999
<groupId>org.entur.gbfs</groupId>
100100
<artifactId>gbfs-validator-java-loader</artifactId>
101-
<version>0-SNAPSHOT</version>
101+
<version>2.0.34-SNAPSHOT</version>
102102
</dependency>
103103

104104
<dependency>
@@ -117,72 +117,72 @@
117117
<artifactId>spring-boot-starter-test</artifactId>
118118
<scope>test</scope>
119119
</dependency>
120-
120+
121121
<!-- JUnit dependencies with aligned versions -->
122122
<dependency>
123123
<groupId>org.junit.jupiter</groupId>
124124
<artifactId>junit-jupiter-api</artifactId>
125125
<version>${junit.version}</version>
126126
<scope>test</scope>
127127
</dependency>
128-
128+
129129
<dependency>
130130
<groupId>org.junit.jupiter</groupId>
131131
<artifactId>junit-jupiter-engine</artifactId>
132132
<version>${junit.version}</version>
133133
<scope>test</scope>
134134
</dependency>
135-
135+
136136
<dependency>
137137
<groupId>org.junit.platform</groupId>
138138
<artifactId>junit-platform-launcher</artifactId>
139139
<version>${junit-platform.version}</version>
140140
<scope>test</scope>
141141
</dependency>
142-
142+
143143
<dependency>
144144
<groupId>org.junit.platform</groupId>
145145
<artifactId>junit-platform-engine</artifactId>
146146
<version>${junit-platform.version}</version>
147147
<scope>test</scope>
148148
</dependency>
149-
149+
150150
<dependency>
151151
<groupId>org.junit.platform</groupId>
152152
<artifactId>junit-platform-commons</artifactId>
153153
<version>${junit-platform.version}</version>
154154
<scope>test</scope>
155155
</dependency>
156-
156+
157157
<!-- Spring Boot Test dependencies -->
158158
<dependency>
159159
<groupId>org.springframework.boot</groupId>
160160
<artifactId>spring-boot-starter-test</artifactId>
161161
<scope>test</scope>
162162
</dependency>
163-
163+
164164
<!-- JUnit dependencies with aligned versions -->
165165
<dependency>
166166
<groupId>org.junit.jupiter</groupId>
167167
<artifactId>junit-jupiter-api</artifactId>
168168
<version>${junit.version}</version>
169169
<scope>test</scope>
170170
</dependency>
171-
171+
172172
<dependency>
173173
<groupId>org.springframework</groupId>
174174
<artifactId>spring-test</artifactId>
175175
<scope>test</scope>
176176
</dependency>
177-
177+
178178
<!-- Jetty servlet dependency required by Spring Boot Test -->
179179
<dependency>
180180
<groupId>org.eclipse.jetty</groupId>
181181
<artifactId>jetty-servlet</artifactId>
182182
<version>9.4.53.v20231009</version>
183183
<scope>test</scope>
184184
</dependency>
185-
185+
186186
<!-- Jetty util dependency required by Spring Boot Test -->
187187
<dependency>
188188
<groupId>org.eclipse.jetty</groupId>
@@ -198,7 +198,7 @@
198198
<groupId>org.springframework.boot</groupId>
199199
<artifactId>spring-boot-maven-plugin</artifactId>
200200
</plugin>
201-
201+
202202
<!-- Configure Surefire plugin for JUnit 5 -->
203203
<plugin>
204204
<groupId>org.apache.maven.plugins</groupId>
@@ -223,7 +223,7 @@
223223
</dependency>
224224
</dependencies>
225225
</plugin>
226-
226+
227227
<plugin>
228228
<groupId>org.openapitools</groupId>
229229
<artifactId>openapi-generator-maven-plugin</artifactId>

gbfs-validator-java-loader/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.entur.gbfs</groupId>
88
<artifactId>gbfs-validator-java-parent</artifactId>
9-
<version>0-SNAPSHOT</version>
9+
<version>2.0.34-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>gbfs-validator-java-loader</artifactId>
@@ -36,7 +36,7 @@
3636
<artifactId>httpclient5</artifactId>
3737
<version>5.3.1</version>
3838
</dependency>
39-
39+
4040
<!-- Test dependencies -->
4141
<dependency>
4242
<groupId>org.junit.jupiter</groupId>

gbfs-validator-java/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>org.entur.gbfs</groupId>
5+
<parent>
6+
<groupId>org.entur.gbfs</groupId>
7+
<artifactId>gbfs-validator-java-parent</artifactId>
8+
<version>2.0.34-SNAPSHOT</version>
9+
</parent>
10+
611
<artifactId>gbfs-validator-java</artifactId>
712
<version>2.0.34-SNAPSHOT</version>
813
<packaging>jar</packaging>

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.entur.gbfs</groupId>
66
<artifactId>gbfs-validator-java-parent</artifactId>
7-
<version>0-SNAPSHOT</version>
7+
<version>2.0.34-SNAPSHOT</version>
88

99
<packaging>pom</packaging>
1010

@@ -16,7 +16,6 @@
1616
<module>gbfs-validator-java-loader</module>
1717
<module>gbfs-validator-java-api</module>
1818
</modules>
19-
2019
<profiles>
2120
<profile>
2221
<id>sonar</id>

0 commit comments

Comments
 (0)