You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2015/01/16 16:20:26 UTC

svn commit: r1652433 - /sling/trunk/testing/junit/core/pom.xml

Author: kwin
Date: Fri Jan 16 15:20:25 2015
New Revision: 1652433

URL: http://svn.apache.org/r1652433
Log:
SLING-4319 embed hamcrest-library as well

Modified:
    sling/trunk/testing/junit/core/pom.xml

Modified: sling/trunk/testing/junit/core/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/testing/junit/core/pom.xml?rev=1652433&r1=1652432&r2=1652433&view=diff
==============================================================================
--- sling/trunk/testing/junit/core/pom.xml (original)
+++ sling/trunk/testing/junit/core/pom.xml Fri Jan 16 15:20:25 2015
@@ -71,14 +71,15 @@
                             org.junit.rules.*;version=${junit.version},
                             org.junit.runner.*;version=${junit.version},
                             org.junit.runners.*;version=${junit.version},
-                            org.hamcrest.*;version=${hamcrest.version},
-                            org.hamcrest.core.*;version=${hamcrest.version}
+                            org.hamcrest;version=${hamcrest.version},
+                            org.hamcrest.*;version=${hamcrest.version}
                         </_exportcontents>
                         <Private-Package>org.apache.sling.junit.impl.*</Private-Package>
                         <Embed-Dependency>
                             org.jacoco.agent;classifier=runtime;inline=org/jacoco/agent/rt/IAgent.class,
                             *;artifactId=junit,
-                            *;artifactId=hamcrest-core
+                            *;artifactId=hamcrest-core,
+                            *;artifactId=hamcrest-library
                         </Embed-Dependency>
                     </instructions>
                 </configuration>
@@ -181,5 +182,11 @@
             <version>${hamcrest.version}</version>
             <scope>compile</scope>
         </dependency>
+        <dependency>
+            <groupId>org.hamcrest</groupId>
+            <artifactId>hamcrest-library</artifactId>
+            <version>${hamcrest.version}</version>
+            <scope>compile</scope>
+        </dependency>
     </dependencies>
 </project>