You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2020/05/30 23:19:41 UTC

[maven-resolver-ant-tasks] branch master updated: Use Apache Snapshots

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-resolver-ant-tasks.git


The following commit(s) were added to refs/heads/master by this push:
     new 77af875  Use Apache Snapshots
77af875 is described below

commit 77af87501c9f2279ce8009803038af2752c7bffd
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun May 31 01:17:01 2020 +0200

    Use Apache Snapshots
---
 build.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/build.xml b/build.xml
index a32501d..9c9bcb5 100644
--- a/build.xml
+++ b/build.xml
@@ -37,12 +37,12 @@
 
   <resolver:localrepo dir="${build.dir}/local-repo"/>
 
-  <resolver:remoterepo id="ossrh" url="http://oss.sonatype.org/content/groups/staging" type="default"
+  <resolver:remoterepo id="rao" url="https://repository.apache.org/content/groups/snapshots" type="default"
                      releases="true" snapshots="true" updates="daily" checksums="fail"/>
 
   <resolver:remoterepos id="resolver.repositories">
     <resolver:remoterepo refid="central"/>
-    <resolver:remoterepo refid="ossrh"/>
+    <resolver:remoterepo refid="rao"/>
   </resolver:remoterepos>
 
   <resolver:pom file="pom.xml" id="pom"/>
@@ -67,7 +67,7 @@
       <path refid="cp.compile.main" classpath="compile"/>
     </resolver:resolve>
 
-    <javac classpathref="cp.compile.main" srcdir="src/main/java" destdir="${build.dir}/classes" 
+    <javac classpathref="cp.compile.main" srcdir="src/main/java" destdir="${build.dir}/classes"
            includeAntRuntime="false" source="7" target="7" encoding="UTF-8" fork="true"/>
   </target>