You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2021/08/15 11:32:49 UTC

[maven-dependency-plugin] branch mrm-1.3.0 updated: add oss snapshot repo

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

olamy pushed a commit to branch mrm-1.3.0
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git


The following commit(s) were added to refs/heads/mrm-1.3.0 by this push:
     new 85daeaa  add oss snapshot repo
85daeaa is described below

commit 85daeaaa039547739069a380ed4020cffc2abdac
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Sun Aug 15 21:32:40 2021 +1000

    add oss snapshot repo
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/pom.xml b/pom.xml
index 4d23bc6..56834a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -511,4 +511,17 @@ under the License.
       </reporting>
     </profile>
   </profiles>
+  <pluginRepositories>
+    <pluginRepository>
+      <name>oss snapshots</name>
+      <id>oss.snapshots</id>
+      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </pluginRepository>
+  </pluginRepositories>
 </project>