Skip to content

Commit 4848010

Browse files
committed
GH-1599: add snapshot repo to test project
1 parent 1dabd89 commit 4848010

File tree

1 file changed

+48
-9
lines changed
  • headless-services/spring-boot-language-server/src/test/resources/test-projects/test-httpexchange-indexing

1 file changed

+48
-9
lines changed

headless-services/spring-boot-language-server/src/test/resources/test-projects/test-httpexchange-indexing/pom.xml

Lines changed: 48 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
11
<?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"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
34
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
45
<modelVersion>4.0.0</modelVersion>
56
<parent>
67
<groupId>org.springframework.boot</groupId>
78
<artifactId>spring-boot-starter-parent</artifactId>
89
<version>4.0.0-SNAPSHOT</version>
9-
<relativePath/> <!-- lookup parent from repository -->
10+
<relativePath /> <!-- lookup parent from repository -->
1011
</parent>
1112
<groupId>com.example.qualifier</groupId>
1213
<artifactId>test-httpexchange-indexing</artifactId>
1314
<version>0.0.1-SNAPSHOT</version>
1415
<name>feign-demo</name>
1516
<description>Demo project for Spring Boot</description>
16-
<url/>
17+
<url />
1718
<licenses>
18-
<license/>
19+
<license />
1920
</licenses>
2021
<developers>
21-
<developer/>
22+
<developer />
2223
</developers>
2324
<scm>
24-
<connection/>
25-
<developerConnection/>
26-
<tag/>
27-
<url/>
25+
<connection />
26+
<developerConnection />
27+
<tag />
28+
<url />
2829
</scm>
2930
<properties>
3031
<java.version>21</java.version>
@@ -55,4 +56,42 @@
5556
</plugins>
5657
</build>
5758

59+
<repositories>
60+
<repository>
61+
<id>spring-milestones</id>
62+
<name>Spring Milestones</name>
63+
<url>https://repo.spring.io/milestone</url>
64+
<snapshots>
65+
<enabled>false</enabled>
66+
</snapshots>
67+
</repository>
68+
<repository>
69+
<id>spring-snapshots</id>
70+
<name>Spring Snapshots</name>
71+
<url>https://repo.spring.io/snapshot</url>
72+
<releases>
73+
<enabled>false</enabled>
74+
</releases>
75+
</repository>
76+
</repositories>
77+
78+
<pluginRepositories>
79+
<pluginRepository>
80+
<id>spring-milestones</id>
81+
<name>Spring Milestones</name>
82+
<url>https://repo.spring.io/milestone</url>
83+
<snapshots>
84+
<enabled>false</enabled>
85+
</snapshots>
86+
</pluginRepository>
87+
<pluginRepository>
88+
<id>spring-snapshots</id>
89+
<name>Spring Snapshots</name>
90+
<url>https://repo.spring.io/snapshot</url>
91+
<releases>
92+
<enabled>false</enabled>
93+
</releases>
94+
</pluginRepository>
95+
</pluginRepositories>
96+
5897
</project>

0 commit comments

Comments
 (0)