learnifymedhub commited on
Commit
289fc90
·
verified ·
1 Parent(s): fc3dab1

Create pom.xml

Browse files
Files changed (1) hide show
  1. pom.xml +34 -0
pom.xml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4
+ <modelVersion>4.0.0</modelVersion>
5
+ <parent>
6
+ <groupId>org.springframework.boot</groupId>
7
+ <artifactId>spring-boot-starter-parent</artifactId>
8
+ <version>3.4.1</version> <relativePath/>
9
+ </parent>
10
+ <groupId>com.example</groupId>
11
+ <artifactId>secure-auth-bff</artifactId>
12
+ <version>0.0.1-SNAPSHOT</version>
13
+ <properties>
14
+ <java.version>21</java.version>
15
+ </properties>
16
+ <dependencies>
17
+ <dependency>
18
+ <groupId>org.springframework.boot</groupId>
19
+ <artifactId>spring-boot-starter-web</artifactId>
20
+ </dependency>
21
+ <dependency>
22
+ <groupId>org.springframework.boot</groupId>
23
+ <artifactId>spring-boot-starter-oauth2-client</artifactId>
24
+ </dependency>
25
+ </dependencies>
26
+ <build>
27
+ <plugins>
28
+ <plugin>
29
+ <groupId>org.springframework.boot</groupId>
30
+ <artifactId>spring-boot-maven-plugin</artifactId>
31
+ </plugin>
32
+ </plugins>
33
+ </build>
34
+ </project>