keycloak-uncached

skip

12/6/2013 11:33:47 AM

Details

dist/pom.xml 7(+7 -0)

diff --git a/dist/pom.xml b/dist/pom.xml
old mode 100644
new mode 100755
index 23e0a71..e3df987
--- a/dist/pom.xml
+++ b/dist/pom.xml
@@ -40,6 +40,13 @@
                 <plugins>
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-deploy-plugin</artifactId>
+                        <configuration>
+                            <skip>true</skip>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-antrun-plugin</artifactId>
                         <version>1.7</version>
                         <executions>

dist-as7/pom.xml 7(+7 -0)

diff --git a/dist-as7/pom.xml b/dist-as7/pom.xml
old mode 100644
new mode 100755
index a3aa146..4635871
--- a/dist-as7/pom.xml
+++ b/dist-as7/pom.xml
@@ -40,6 +40,13 @@
                 <plugins>
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-deploy-plugin</artifactId>
+                        <configuration>
+                            <skip>true</skip>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-antrun-plugin</artifactId>
                         <version>1.7</version>
                         <executions>
diff --git a/examples/as7-eap-demo/database-service/pom.xml b/examples/as7-eap-demo/database-service/pom.xml
index 62b7e3f..9aaa52e 100755
--- a/examples/as7-eap-demo/database-service/pom.xml
+++ b/examples/as7-eap-demo/database-service/pom.xml
@@ -45,6 +45,13 @@
         <finalName>database</finalName>
         <plugins>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+            <plugin>
                 <groupId>org.jboss.as.plugins</groupId>
                 <artifactId>jboss-as-maven-plugin</artifactId>
                 <version>7.4.Final</version>
diff --git a/testsuite/integration/pom.xml b/testsuite/integration/pom.xml
index 03fbbff..2b71354 100755
--- a/testsuite/integration/pom.xml
+++ b/testsuite/integration/pom.xml
@@ -214,6 +214,13 @@
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <configuration>
                     <source>1.6</source>
diff --git a/testsuite/performance/pom.xml b/testsuite/performance/pom.xml
index f9dc957..34c2914 100755
--- a/testsuite/performance/pom.xml
+++ b/testsuite/performance/pom.xml
@@ -64,6 +64,13 @@
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <configuration>
                     <source>1.6</source>

testsuite/pom.xml 11(+11 -0)

diff --git a/testsuite/pom.xml b/testsuite/pom.xml
index c8b7bcf..081c951 100755
--- a/testsuite/pom.xml
+++ b/testsuite/pom.xml
@@ -12,6 +12,17 @@
     <packaging>pom</packaging>
     <name>Keycloak TestSuite</name>
 	<description />
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
     <modules>
         <module>integration</module>
         <module>performance</module>