|
1 | 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" |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 5 | <modelVersion>4.0.0</modelVersion> |
5 | 6 | <parent> |
6 | 7 | <groupId>org.springframework.boot</groupId> |
7 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
8 | 9 | <version>4.0.0-SNAPSHOT</version> |
9 | | - <relativePath/> <!-- lookup parent from repository --> |
| 10 | + <relativePath /> <!-- lookup parent from repository --> |
10 | 11 | </parent> |
11 | 12 | <groupId>com.example.qualifier</groupId> |
12 | 13 | <artifactId>test-httpexchange-indexing</artifactId> |
13 | 14 | <version>0.0.1-SNAPSHOT</version> |
14 | 15 | <name>feign-demo</name> |
15 | 16 | <description>Demo project for Spring Boot</description> |
16 | | - <url/> |
| 17 | + <url /> |
17 | 18 | <licenses> |
18 | | - <license/> |
| 19 | + <license /> |
19 | 20 | </licenses> |
20 | 21 | <developers> |
21 | | - <developer/> |
| 22 | + <developer /> |
22 | 23 | </developers> |
23 | 24 | <scm> |
24 | | - <connection/> |
25 | | - <developerConnection/> |
26 | | - <tag/> |
27 | | - <url/> |
| 25 | + <connection /> |
| 26 | + <developerConnection /> |
| 27 | + <tag /> |
| 28 | + <url /> |
28 | 29 | </scm> |
29 | 30 | <properties> |
30 | 31 | <java.version>21</java.version> |
|
55 | 56 | </plugins> |
56 | 57 | </build> |
57 | 58 |
|
| 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 | + |
58 | 97 | </project> |
0 commit comments