Skip to content

Commit 2688c5f

Browse files
authored
Use cache redirector when building the maven plugin (#564)
Fixes KTI-2806
1 parent 057f605 commit 2688c5f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

atomicfu-maven-plugin/settings.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,31 @@
99
<password>${env.BINTRAY_API_KEY}</password>
1010
</server>
1111
</servers>
12+
<profiles>
13+
<profile>
14+
<id>cache-redirector</id>
15+
<pluginRepositories>
16+
<pluginRepository>
17+
<id>MavenCentral-JBCached</id>
18+
<url>https://cache-redirector.jetbrains.com/maven-central</url>
19+
</pluginRepository>
20+
</pluginRepositories>
21+
<repositories>
22+
<repository>
23+
<id>MavenCentral-JBCached</id>
24+
<url>https://cache-redirector.jetbrains.com/maven-central</url>
25+
</repository>
26+
</repositories>
27+
</profile>
28+
</profiles>
29+
<mirrors>
30+
<mirror>
31+
<id>MavenCentral-JBCached</id>
32+
<url>https://cache-redirector.jetbrains.com/maven-central</url>
33+
<mirrorOf>central</mirrorOf>
34+
</mirror>
35+
</mirrors>
36+
<activeProfiles>
37+
<activeProfile>cache-redirector</activeProfile>
38+
</activeProfiles>
1239
</settings>

0 commit comments

Comments
 (0)