Skip to content

Commit 19e4294

Browse files
committed
1.0.0
1 parent 274c11e commit 19e4294

4 files changed

Lines changed: 3 additions & 58 deletions

File tree

pom.xml

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -193,66 +193,11 @@
193193
<artifactId>swagger-parser-v3</artifactId>
194194
<version>2.0.17</version>
195195
</dependency>
196-
<dependency>
197-
<groupId>com.j2html</groupId>
198-
<artifactId>j2html</artifactId>
199-
<version>1.4.0</version>
200-
</dependency>
201-
<dependency>
202-
<groupId>org.junit.jupiter</groupId>
203-
<artifactId>junit-jupiter-engine</artifactId>
204-
<version>${junit.jupiter.version}</version>
205-
<scope>test</scope>
206-
</dependency>
207-
<dependency>
208-
<groupId>org.junit.jupiter</groupId>
209-
<artifactId>junit-jupiter-api</artifactId>
210-
<version>${junit.jupiter.version}</version>
211-
<scope>test</scope>
212-
</dependency>
213-
<dependency>
214-
<groupId>org.junit.platform</groupId>
215-
<artifactId>junit-platform-runner</artifactId>
216-
<version>${junit.platform.version}</version>
217-
<scope>test</scope>
218-
</dependency>
219-
<dependency>
220-
<groupId>org.junit.platform</groupId>
221-
<artifactId>junit-platform-launcher</artifactId>
222-
<version>${junit.platform.version}</version>
223-
<scope>test</scope>
224-
</dependency>
225-
<dependency>
226-
<groupId>org.assertj</groupId>
227-
<artifactId>assertj-core</artifactId>
228-
<version>${assertj-core.version}</version>
229-
<scope>test</scope>
230-
</dependency>
231196
<dependency>
232197
<groupId>org.apache.commons</groupId>
233198
<artifactId>commons-collections4</artifactId>
234199
<version>4.4</version>
235200
</dependency>
236-
<dependency>
237-
<groupId>commons-cli</groupId>
238-
<artifactId>commons-cli</artifactId>
239-
<version>1.4</version>
240-
</dependency>
241-
<dependency>
242-
<groupId>org.slf4j</groupId>
243-
<artifactId>slf4j-api</artifactId>
244-
<version>1.7.30</version>
245-
</dependency>
246-
<dependency>
247-
<groupId>org.slf4j</groupId>
248-
<artifactId>slf4j-log4j12</artifactId>
249-
<version>1.7.30</version>
250-
</dependency>
251-
<dependency>
252-
<groupId>commons-httpclient</groupId>
253-
<artifactId>commons-httpclient</artifactId>
254-
<version>3.1</version>
255-
</dependency>
256201
<dependency>
257202
<groupId>org.projectlombok</groupId>
258203
<artifactId>lombok</artifactId>

src/main/java/com.github.elibracha/model/ChangedOpenApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.github.elibracha.model;
22

3-
import com.github.elibracha.util.EndpointUtils;
3+
import com.github.elibracha.model.util.EndpointUtils;
44
import io.swagger.v3.oas.models.OpenAPI;
55
import java.util.List;
66
import java.util.stream.Collectors;

src/main/java/com.github.elibracha/util/ChangedUtils.java renamed to src/main/java/com.github.elibracha/model/util/ChangedUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.elibracha.util;
1+
package com.github.elibracha.model.util;
22

33

44
import com.github.elibracha.model.Changed;

src/main/java/com.github.elibracha/util/EndpointUtils.java renamed to src/main/java/com.github.elibracha/model/util/EndpointUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.elibracha.util;
1+
package com.github.elibracha.model.util;
22

33
import com.github.elibracha.model.Endpoint;
44
import io.swagger.v3.oas.models.Operation;

0 commit comments

Comments
 (0)