File tree 1 file changed +27
-9
lines changed
1 file changed +27
-9
lines changed Original file line number Diff line number Diff line change 2
2
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
3
xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
4
<modelVersion >4.0.0</modelVersion >
5
-
6
5
<groupId >com.example</groupId >
7
6
<artifactId >easy-notes</artifactId >
8
7
<version >1.0.0</version >
9
8
<packaging >jar</packaging >
10
-
11
9
<name >easy-notes</name >
12
10
<description >Rest API for a Simple Note Taking Application</description >
13
-
14
11
<parent >
15
12
<groupId >org.springframework.boot</groupId >
16
13
<artifactId >spring-boot-starter-parent</artifactId >
17
14
<version >2.5.5</version >
18
15
<relativePath /> <!-- lookup parent from repository -->
19
16
</parent >
20
-
21
17
<properties >
22
18
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
23
19
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
24
- <java .version>11 </java .version>
20
+ <java .version>8 </java .version>
25
21
</properties >
26
-
27
22
<dependencies >
28
23
<dependency >
29
24
<groupId >org.springframework.boot</groupId >
53
48
<scope >test</scope >
54
49
</dependency >
55
50
</dependencies >
56
-
57
51
<build >
58
52
<plugins >
59
53
<plugin >
62
56
</plugin >
63
57
</plugins >
64
58
</build >
65
-
66
-
59
+
60
+ <pluginRepositories >
61
+ <pluginRepository >
62
+ <id >central</id >
63
+ <name >Central Repository</name >
64
+ <url >https://repo.maven.apache.org/maven2</url >
65
+ <layout >default</layout >
66
+ <snapshots >
67
+ <enabled >false</enabled >
68
+ </snapshots >
69
+ <releases >
70
+ <updatePolicy >never</updatePolicy >
71
+ </releases >
72
+ </pluginRepository >
73
+ </pluginRepositories >
74
+ <repositories >
75
+ <repository >
76
+ <id >central</id >
77
+ <name >Central Repository</name >
78
+ <url >https://repo.maven.apache.org/maven2</url >
79
+ <layout >default</layout >
80
+ <snapshots >
81
+ <enabled >false</enabled >
82
+ </snapshots >
83
+ </repository >
84
+ </repositories >
67
85
</project >
You can’t perform that action at this time.
0 commit comments