Skip to content

Commit 711ac34

Browse files
committed
Fix Micrometer-based deployment issues.
When deploying to artifactory, a Micrometer-based plugin can't be found. See #4017.
1 parent 852a4ec commit 711ac34

File tree

1 file changed

+22
-0
lines changed
  • spring-data-mongodb-distribution

1 file changed

+22
-0
lines changed

spring-data-mongodb-distribution/pom.xml

+22
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,26 @@
121121
</repository>
122122
</repositories>
123123

124+
<pluginRepositories>
125+
<pluginRepository>
126+
<id>spring-snapshots</id>
127+
<name>Spring Snapshots</name>
128+
<url>https://repo.spring.io/snapshot</url> <!-- For Snapshots -->
129+
<snapshots>
130+
<enabled>true</enabled>
131+
</snapshots>
132+
<releases>
133+
<enabled>false</enabled>
134+
</releases>
135+
</pluginRepository>
136+
<pluginRepository>
137+
<id>spring-milestones</id>
138+
<name>Spring Milestones</name>
139+
<url>https://repo.spring.io/milestone</url> <!-- For Milestones -->
140+
<snapshots>
141+
<enabled>false</enabled>
142+
</snapshots>
143+
</pluginRepository>
144+
</pluginRepositories>
145+
124146
</project>

0 commit comments

Comments
 (0)