File tree 1 file changed +39
-0
lines changed
1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
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
+ <parent >
8
+ <groupId >org.springframework.boot</groupId >
9
+ <artifactId >spring-boot-starter-parent</artifactId >
10
+ <version >2.5.6</version >
11
+ <relativePath /> <!-- lookup parent from repository -->
12
+ </parent >
13
+
14
+ <groupId >ro.unibuc</groupId >
15
+ <artifactId >lab04-main</artifactId >
16
+ <version >1.0-SNAPSHOT</version >
17
+
18
+ <properties >
19
+ <maven .compiler.source>17</maven .compiler.source>
20
+ <maven .compiler.target>17</maven .compiler.target>
21
+ </properties >
22
+
23
+ <dependencies >
24
+ <dependency >
25
+ <groupId >org.springframework.boot</groupId >
26
+ <artifactId >spring-boot-starter-web</artifactId >
27
+ </dependency >
28
+ </dependencies >
29
+
30
+ <build >
31
+ <plugins >
32
+ <plugin >
33
+ <groupId >org.springframework.boot</groupId >
34
+ <artifactId >spring-boot-maven-plugin</artifactId >
35
+ </plugin >
36
+ </plugins >
37
+ </build >
38
+
39
+ </project >
You can’t perform that action at this time.
0 commit comments