You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ss...@apache.org on 2014/10/29 23:47:18 UTC

svn commit: r1635327 - /sling/whiteboard/sseifert/SLING-4112_models_tuning/impl/pom.xml

Author: sseifert
Date: Wed Oct 29 22:47:17 2014
New Revision: 1635327

URL: http://svn.apache.org/r1635327
Log:
exclude model api/impl from test dependency to not mix up with project itself

Modified:
    sling/whiteboard/sseifert/SLING-4112_models_tuning/impl/pom.xml

Modified: sling/whiteboard/sseifert/SLING-4112_models_tuning/impl/pom.xml
URL: http://svn.apache.org/viewvc/sling/whiteboard/sseifert/SLING-4112_models_tuning/impl/pom.xml?rev=1635327&r1=1635326&r2=1635327&view=diff
==============================================================================
--- sling/whiteboard/sseifert/SLING-4112_models_tuning/impl/pom.xml (original)
+++ sling/whiteboard/sseifert/SLING-4112_models_tuning/impl/pom.xml Wed Oct 29 22:47:17 2014
@@ -143,6 +143,16 @@
             <artifactId>org.apache.sling.testing.sling-mock</artifactId>
             <version>1.0.1-SNAPSHOT</version>
             <scope>test</scope>
+            <exclusions>
+              <exclusion>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>org.apache.sling.models.api</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>org.apache.sling.models.impl</artifactId>
+              </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 </project>