Skip to content

Commit f2b45cf

Browse files
committed
Update dependencies
1 parent c2ffe60 commit f2b45cf

File tree

3 files changed

+74
-3
lines changed

3 files changed

+74
-3
lines changed

.mvn/settings.xml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
2+
<settings
3+
xmlns="http://maven.apache.org/SETTINGS/1.2.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation=
6+
"http://maven.apache.org/SETTINGS/1.2.0 http://maven.apache.org/xsd/settings-1.2.0.xsd">
7+
8+
<servers>
9+
<server>
10+
<id>central</id>
11+
<username>user</username>
12+
<password>pass</password>
13+
</server>
14+
15+
<server>
16+
<id>snapshots</id>
17+
<username>user</username>
18+
<password>pass</password>
19+
</server>
20+
</servers>
21+
22+
<profiles>
23+
24+
<!--
25+
! Picks internal repositories if 'mavenCentral' is not defined. For corporate integration
26+
-->
27+
<profile>
28+
<id>artifactory</id>
29+
30+
<activation>
31+
<property>
32+
<name>!mavenCentral</name>
33+
</property>
34+
</activation>
35+
36+
<repositories>
37+
<repository>
38+
<snapshots>
39+
<enabled>false</enabled>
40+
</snapshots>
41+
<id>central</id>
42+
<name>api-maven-release-virtual</name>
43+
<url>https://artifactory.com/artifactory/api-maven-release-virtual</url>
44+
</repository>
45+
<repository>
46+
<snapshots />
47+
<id>snapshots</id>
48+
<name>api-maven-snapshot-virtual</name>
49+
<url>https://artifactory.com/artifactory/api-maven-snapshot-virtual</url>
50+
</repository>
51+
</repositories>
52+
53+
<pluginRepositories>
54+
<pluginRepository>
55+
<snapshots>
56+
<enabled>false</enabled>
57+
</snapshots>
58+
<id>central</id>
59+
<name>plugins-release</name>
60+
<url>https://artifactory.com/artifactory/plugins-release</url>
61+
</pluginRepository>
62+
<pluginRepository>
63+
<snapshots />
64+
<id>snapshots</id>
65+
<name>plugins-release</name>
66+
<url>https://artifactory.com/artifactory/plugins-release</url>
67+
</pluginRepository>
68+
</pluginRepositories>
69+
</profile>
70+
</profiles>
71+
</settings>

.mvn/spring.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>3.4.5</version>
17+
<version>3.5.3</version>
1818
<relativePath/>
1919
</parent>
2020

@@ -34,7 +34,7 @@
3434
</description>
3535

3636
<properties>
37-
<maven>3.9.9</maven>
37+
<maven>3.9.10</maven>
3838

3939
<openApiNullable>false</openApiNullable>
4040
<openapi.package>${project.groupId}.${project.artifactId}.http</openapi.package>

.mvn/wrapper/maven-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717
wrapperVersion=3.3.2
1818
distributionType=only-script
19-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip

0 commit comments

Comments
 (0)