Skip to content

Commit e2a195d

Browse files
Bump version; remove Spring Boot app; add deps
Bump project version from 21.0.1 to 21.0.2. Remove the Spring Boot application class and its test and drop spring-boot-starter / spring-boot-starter-test entries from the POM. Add org.slf4j:slf4j-api:2.1.0-alpha1 (compile) and org.assertj:assertj-core:4.0.0-M1 (test) dependencies.
1 parent b63b4b0 commit e2a195d

3 files changed

Lines changed: 17 additions & 39 deletions

File tree

pom.xml

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>io.github.openjavalibs</groupId>
88
<artifactId>pojo-tester</artifactId>
9-
<version>21.0.1</version>
9+
<version>21.0.2</version>
1010
<packaging>jar</packaging>
1111
<name>pojo-tester</name>
1212
<description>Pojo Tester</description>
@@ -43,11 +43,6 @@
4343
<maven.compiler.target>21</maven.compiler.target>
4444
</properties>
4545
<dependencies>
46-
<dependency>
47-
<groupId>org.springframework.boot</groupId>
48-
<artifactId>spring-boot-starter</artifactId>
49-
<version>3.3.5</version>
50-
</dependency>
5146
<!--
5247
https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
5348
<dependency>
@@ -76,6 +71,14 @@
7671
<version>3.4.0</version>
7772
</dependency>
7873

74+
<!-- Source: https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
75+
<dependency>
76+
<groupId>org.slf4j</groupId>
77+
<artifactId>slf4j-api</artifactId>
78+
<version>2.1.0-alpha1</version>
79+
<scope>compile</scope>
80+
</dependency>
81+
7982
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
8083
<dependency>
8184
<groupId>org.projectlombok</groupId>
@@ -128,20 +131,21 @@
128131
<scope>test</scope>
129132
</dependency>
130133

134+
<!-- Source: https://mvnrepository.com/artifact/org.assertj/assertj-core -->
135+
<dependency>
136+
<groupId>org.assertj</groupId>
137+
<artifactId>assertj-core</artifactId>
138+
<version>4.0.0-M1</version>
139+
<scope>test</scope>
140+
</dependency>
141+
131142
<!-- https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy -->
132143
<dependency>
133144
<groupId>net.bytebuddy</groupId>
134145
<artifactId>byte-buddy</artifactId>
135146
<version>1.15.10</version>
136147
</dependency>
137148

138-
<dependency>
139-
<groupId>org.springframework.boot</groupId>
140-
<artifactId>spring-boot-starter-test</artifactId>
141-
<version>3.3.5</version>
142-
<scope>test</scope>
143-
</dependency>
144-
145149
<!--
146150
https://mvnrepository.com/artifact/org.powermock/powermock-module-junit4 -->
147151
<dependency>

src/main/java/com/java/pojo/PojoTesterApplication.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/test/java/com/java/pojo/PojoTesterApplicationTests.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)