Skip to content

Commit

Permalink
Disable maven-default-http-blocker for sonatype snapshots repo
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed May 11, 2021
1 parent cdf4c87 commit 6b3728b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
program. If not, see <http://opensource.org/licenses/MIT/>.
-->
<settings
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns="http://maven.apache.org/SETTINGS/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
<profiles>
<profile>
<activation>
Expand Down Expand Up @@ -65,4 +65,12 @@
<password>${env.SONATYPE_PASSWORD}</password>
</server>
</servers>
<mirrors>
<mirror>
<id>snapshots-repo</id>
<mirrorOf>snapshots-repo</mirrorOf>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<blocked>false</blocked>
</mirror>
</mirrors>
</settings>

0 comments on commit 6b3728b

Please sign in to comment.