Author: rombert
Date: Wed Nov 16 15:24:05 2016
New Revision: 1770000
URL: http://svn.apache.org/viewvc?rev=1770000&view=rev
Log:
js/nodetypes: cleanup maven-sling-plugin configuration
1) the plug-in was configured to automatically install on a
Sling server instance, which causes the build to fail if a Sling
server is not started on port 8080, for instance on Jenkins
2) the plug-in overrode 4 configuration properties, but the values
were set to default, so I just removed the configuration block
Modified:
sling/trunk/contrib/jcr/js/nodetypes/pom.xml
Modified: sling/trunk/contrib/jcr/js/nodetypes/pom.xml
URL:
http://svn.apache.org/viewvc/sling/trunk/contrib/jcr/js/nodetypes/pom.xml?rev=1770000&r1=1769999&r2=1770000&view=diff
==============================================================================
--- sling/trunk/contrib/jcr/js/nodetypes/pom.xml (original)
+++ sling/trunk/contrib/jcr/js/nodetypes/pom.xml Wed Nov 16 15:24:05 2016
@@ -91,18 +91,11 @@
<artifactId>maven-sling-plugin</artifactId>
<executions>
<execution>
- <id>install-bundle</id>
+ <id>validate-bundle</id>
<goals>
<goal>validate</goal>
- <goal>install</goal>
</goals>
- <configuration>
-
<mountByFS>false</mountByFS>
-
<slingUrl>http://localhost:8080/system/console</slingUrl>
- <user>admin</user>
-
<password>admin</password>
- </configuration>
- </execution>
+ </execution>
</executions>
</plugin>
<plugin>
@@ -194,4 +187,4 @@
<scope>test</scope>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>