|
15 | 15 | See the License for the specific language governing permissions and |
16 | 16 | limitations under the License. |
17 | 17 | --> |
18 | | -<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/maven-v4_0_0.xsd"> |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
19 | 20 | <modelVersion>4.0.0</modelVersion> |
20 | | - |
| 21 | + |
21 | 22 | <parent> |
22 | 23 | <artifactId>empire-db-examples</artifactId> |
23 | 24 | <groupId>org.apache.empire-db</groupId> |
24 | 25 | <version>3.4.1-SNAPSHOT</version> |
25 | 26 | </parent> |
26 | | - |
| 27 | + |
27 | 28 | <name>Apache Empire-db Spring Boot Example</name> |
28 | 29 | <artifactId>empire-db-example-spring-boot</artifactId> |
29 | 30 | <packaging>jar</packaging> |
30 | 31 |
|
31 | 32 | <properties> |
32 | | - <spring-boot.version>2.7.17</spring-boot.version> |
| 33 | + <spring-boot.version>4.0.2</spring-boot.version> |
| 34 | + <maven.compiler.source>17</maven.compiler.source> |
| 35 | + <maven.compiler.target>17</maven.compiler.target> |
33 | 36 | </properties> |
34 | 37 |
|
35 | 38 | <dependencyManagement> |
|
49 | 52 | <dependency> |
50 | 53 | <groupId>org.apache.empire-db</groupId> |
51 | 54 | <artifactId>empire-db</artifactId> |
52 | | - </dependency> |
53 | | - |
54 | | - <dependency> |
55 | | - <groupId>org.springframework.boot</groupId> |
56 | | - <artifactId>spring-boot-starter</artifactId> |
57 | 55 | <exclusions> |
58 | | - <exclusion> |
59 | | - <groupId>ch.qos.logback</groupId> |
60 | | - <artifactId>logback-classic</artifactId> |
61 | | - </exclusion> |
| 56 | + <exclusion> |
| 57 | + <groupId>log4j</groupId> |
| 58 | + <artifactId>log4j</artifactId> |
| 59 | + </exclusion> |
| 60 | + <exclusion> |
| 61 | + <groupId>org.slf4j</groupId> |
| 62 | + <artifactId>slf4j-api</artifactId> |
| 63 | + </exclusion> |
| 64 | + <exclusion> |
| 65 | + <groupId>org.slf4j</groupId> |
| 66 | + <artifactId>slf4j-reload4j</artifactId> |
| 67 | + </exclusion> |
62 | 68 | </exclusions> |
63 | 69 | </dependency> |
64 | | - |
65 | | - <!-- logging --> |
66 | | - <dependency> |
67 | | - <groupId>org.slf4j</groupId> |
68 | | - <artifactId>slf4j-reload4j</artifactId> |
69 | | - </dependency> |
70 | | - |
71 | 70 | <dependency> |
72 | 71 | <groupId>org.hsqldb</groupId> |
73 | 72 | <artifactId>hsqldb</artifactId> |
74 | 73 | <scope>runtime</scope> |
75 | 74 | </dependency> |
76 | | - |
| 75 | + <dependency> |
| 76 | + <groupId>org.slf4j</groupId> |
| 77 | + <artifactId>slf4j-api</artifactId> |
| 78 | + <version>2.0.17</version> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.springframework.boot</groupId> |
| 82 | + <artifactId>spring-boot-starter</artifactId> |
| 83 | + </dependency> |
77 | 84 | <dependency> |
78 | 85 | <groupId>org.springframework.boot</groupId> |
79 | 86 | <artifactId>spring-boot-starter-jdbc</artifactId> |
|
0 commit comments