Skip to content

Commit a550fda

Browse files
Create pom.xml
1 parent 73c3e5e commit a550fda

File tree

1 file changed

+94
-0
lines changed
  • data-platform/autonomous-database/autonomous-json/SpringBootDemo

1 file changed

+94
-0
lines changed
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.oracle</groupId>
8+
<artifactId>SpringBootDemo</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>21</maven.compiler.source>
13+
<maven.compiler.target>21</maven.compiler.target>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
<dependencies>
17+
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-mongodb -->
18+
<dependency>
19+
<groupId>org.springframework.boot</groupId>
20+
<artifactId>spring-boot-starter-data-mongodb</artifactId>
21+
<version>3.5.4</version>
22+
<exclusions>
23+
<!-- avoid: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. on run with vscode -->
24+
<exclusion>
25+
<groupId>ch.qos.logback</groupId>
26+
<artifactId>logback-classic</artifactId>
27+
</exclusion>
28+
</exclusions>
29+
</dependency>
30+
31+
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
32+
<dependency>
33+
<groupId>org.springframework.boot</groupId>
34+
<artifactId>spring-boot-starter-test</artifactId>
35+
<version>3.5.4</version>
36+
<scope>test</scope>
37+
<exclusions>
38+
<!-- avoid: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. on run with vscode -->
39+
<exclusion>
40+
<groupId>ch.qos.logback</groupId>
41+
<artifactId>logback-classic</artifactId>
42+
</exclusion>
43+
</exclusions>
44+
</dependency>
45+
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-testcontainers -->
46+
<dependency>
47+
<groupId>org.springframework.boot</groupId>
48+
<artifactId>spring-boot-testcontainers</artifactId>
49+
<version>3.5.4</version>
50+
<scope>test</scope>
51+
<exclusions>
52+
<!-- avoid: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. on run with vscode -->
53+
<exclusion>
54+
<groupId>ch.qos.logback</groupId>
55+
<artifactId>logback-classic</artifactId>
56+
</exclusion>
57+
</exclusions>
58+
</dependency>
59+
<!-- https://mvnrepository.com/artifact/org.testcontainers/testcontainers -->
60+
<dependency>
61+
<groupId>org.testcontainers</groupId>
62+
<artifactId>testcontainers</artifactId>
63+
<version>1.21.3</version>
64+
<scope>test</scope>
65+
<exclusions>
66+
<!-- avoid: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. on run with vscode -->
67+
<exclusion>
68+
<groupId>ch.qos.logback</groupId>
69+
<artifactId>logback-classic</artifactId>
70+
</exclusion>
71+
</exclusions>
72+
</dependency>
73+
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
74+
<dependency>
75+
<groupId>org.junit.jupiter</groupId>
76+
<artifactId>junit-jupiter-api</artifactId>
77+
<version>5.13.4</version>
78+
<scope>test</scope>
79+
<exclusions>
80+
<!-- avoid: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. on run with vscode -->
81+
<exclusion>
82+
<groupId>ch.qos.logback</groupId>
83+
<artifactId>logback-classic</artifactId>
84+
</exclusion>
85+
</exclusions>
86+
</dependency>
87+
</dependencies>
88+
<exclusions>
89+
<exclusion>
90+
<groupId>org.slf4j</groupId>
91+
<artifactId>slf4j-simple</artifactId>
92+
</exclusion>
93+
</exclusions>
94+
</project>

0 commit comments

Comments
 (0)