Skip to content

Commit 9badb76

Browse files
committed
use maven central to resolve letuce snapshot version
1 parent 4ea508e commit 9badb76

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,32 @@
1919
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2020
</properties>
2121

22+
<repositories>
23+
<repository>
24+
<id>central</id>
25+
<name>Maven Central Repository</name>
26+
<url>https://repo1.maven.org/maven2</url>
27+
<releases>
28+
<enabled>true</enabled>
29+
</releases>
30+
<snapshots>
31+
<enabled>false</enabled>
32+
</snapshots>
33+
</repository>
34+
<repository>
35+
<id>central-snapshots</id>
36+
<name>Maven Central Snapshot Repository</name>
37+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
38+
<releases>
39+
<enabled>false</enabled>
40+
</releases>
41+
<snapshots>
42+
<enabled>true</enabled>
43+
<updatePolicy>daily</updatePolicy>
44+
</snapshots>
45+
</repository>
46+
</repositories>
47+
2248
<dependencies>
2349
<dependency>
2450
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)