Skip to content

Commit

Permalink
Update maven repositories
Browse files Browse the repository at this point in the history
Build changes to osgeo repository and use of https for maven central.
  • Loading branch information
jodygarnett committed Nov 17, 2020
1 parent 82ffc75 commit 1f38292
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 23 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -8,3 +8,6 @@ target
# Intellij
.idea/
*.iml

# build
release.rb
4 changes: 2 additions & 2 deletions geowebcache/distributed/pom.xml
Expand Up @@ -19,8 +19,8 @@
<repositories>
<repository>
<id>central</id>
<name>Central Maven Repository</name>
<url>http://repo1.maven.org/maven2</url>
<name>Central Maven repository https</name>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
Expand Down
47 changes: 26 additions & 21 deletions geowebcache/pom.xml
Expand Up @@ -43,38 +43,43 @@

<repositories>
<repository>
<id>boundless</id>
<name>Boundless Maven Repository</name>
<url>https://repo.boundlessgeo.com/main/</url>
<id>osgeo-release</id>
<name>OSGeo Repository</name>
<url>https://repo.osgeo.org/repository/release/</url>
<!-- Contains releases for OSGeo projects: GeoTools, GeoWebCache, GeoServer, ... -->
<!-- Includs third-party-dependences, and caches of: -->
<!-- ucar (https://artifacts.unidata.ucar.edu/content/repositories/unidata-releases) -->
<!-- geosolutions (http://maven.geo-solutions.it/) -->
<snapshots>
<enabled>true</enabled>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>osgeo</id>
<name>Open Source Geospatial Foundation Repository</name>
<url>http://download.osgeo.org/webdav/geotools/</url>
</repository>
<repository>
<id>oracleReleases</id>
<name>Oracle Released Java Packages</name>
<url>http://download.oracle.com/maven</url>
<layout>default</layout>
<id>osgeo-snapshot</id>
<name>OSGeo Repository</name>
<url>https://repo.osgeo.org/repository/snapshot/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>

<distributionManagement>
<repository>
<id>boundless</id>
<name>Boundless</name>
<url>https://repo.boundlessgeo.com/release/</url>
<uniqueVersion>false</uniqueVersion>
<id>nexus</id>
<name>OSGeo GeoServer Release Repository</name>
<url>https://repo.osgeo.org/repository/Geoserver-releases/</url>
</repository>
<snapshotRepository>
<id>boundless</id>
<uniqueVersion>false</uniqueVersion>
<name>Boundless Maven Repository</name>
<url>https://repo.boundlessgeo.com/snapshot/</url>
<id>nexus</id>
<name>OSGeo GeoServer Snapshot Repository</name>
<url>https://repo.osgeo.org/repository/geoserver-snapshots/</url>
</snapshotRepository>
</distributionManagement>

Expand Down

0 comments on commit 1f38292

Please sign in to comment.