You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2017/03/28 09:52:35 UTC

struts-examples git commit: Adds snapshot repos

Repository: struts-examples
Updated Branches:
  refs/heads/master 7882b0de5 -> a7db35bbd


Adds snapshot repos


Project: http://git-wip-us.apache.org/repos/asf/struts-examples/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts-examples/commit/a7db35bb
Tree: http://git-wip-us.apache.org/repos/asf/struts-examples/tree/a7db35bb
Diff: http://git-wip-us.apache.org/repos/asf/struts-examples/diff/a7db35bb

Branch: refs/heads/master
Commit: a7db35bbdb86394e6f13a2c9bac24269ab4ed56f
Parents: 7882b0d
Author: Lukasz Lenart <lu...@gmail.com>
Authored: Tue Mar 28 11:52:26 2017 +0200
Committer: Lukasz Lenart <lu...@gmail.com>
Committed: Tue Mar 28 11:52:26 2017 +0200

----------------------------------------------------------------------
 pom.xml | 31 ++++++++++++++++++++++++++++---
 1 file changed, 28 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts-examples/blob/a7db35bb/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 31f9c32..43b8926 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.struts</groupId>
     <artifactId>struts-examples</artifactId>
@@ -80,7 +81,7 @@
         <module>wildcard-method-selection</module>
         <module>wildcard-regex</module>
         <module>unknown-handler</module>
-  </modules>
+    </modules>
 
     <dependencies>
 
@@ -115,5 +116,29 @@
         </plugins>
 
     </build>
-    
+
+    <repositories>
+        <repository>
+            <id>apache-public</id>
+            <url>https://repository.apache.org/content/groups/public/</url>
+            <layout>default</layout>
+        </repository>
+        <repository>
+            <id>apache-snapshots</id>
+            <url>https://repository.apache.org/content/groups/snapshots/</url>
+            <layout>default</layout>
+            <snapshots>
+                <enabled>true</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <id>oss-snapshots</id>
+            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
+            <layout>default</layout>
+            <snapshots>
+                <enabled>true</enabled>
+            </snapshots>
+        </repository>
+    </repositories>
+
 </project>
\ No newline at end of file