You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2019/09/14 18:19:45 UTC

[maven-assembly-plugin] branch MASSEMBLY-921 updated: added snapshot repos

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

hboutemy pushed a commit to branch MASSEMBLY-921
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git


The following commit(s) were added to refs/heads/MASSEMBLY-921 by this push:
     new eb5af0a  added snapshot repos
eb5af0a is described below

commit eb5af0a80978b89c7b6b30f3c1afe407b379fbb3
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sat Sep 14 20:19:41 2019 +0200

    added snapshot repos
---
 pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/pom.xml b/pom.xml
index 1055f68..cfa36ba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -421,4 +421,19 @@ under the License.
       </build>
     </profile>
   </profiles>
+
+  <repositories>
+    <repository>
+      <id>plexus-snapshots</id>
+      <url>https://oss.sonatype.org/content/repositories/plexus-snapshots/</url>
+      <snapshots><enabled>true</enabled></snapshots>
+      <releases><enabled>false</enabled></releases>
+    </repository>
+    <repository>
+      <id>apache-snapshots</id>
+      <url>https://repository.apache.org/content/repositories/snapshots/</url>
+      <snapshots><enabled>true</enabled></snapshots>
+      <releases><enabled>false</enabled></releases>
+    </repository>
+  </repositories>
 </project>