Details
-
Type:
Bug
-
Status:
Open
-
Resolution: Unresolved
-
Affects Version/s: 1.0-milestone-4
-
Fix Version/s: None
Description
I'm using gradle to build the CDI project and use arquillian to run the unit test, in the arqullian test case, I have to include the jar from gradle cache, for example:
the "org.jboss.seam:jboss-el:2.0.0.GA" is mapping to System.getProperty("user.home")/.gradle/cache/org.jboss.seam/jboss-el/jars/jboss-el-2.0.0.GA.jar,
Now the file is in:
System.getProperty("user.home")/.gradle/caches/artifacts/org.jboss.seam/jboss-el/aedb9ed72585ce82a68cb685d36dd090/jars/jboss-el-2.0.0.GA.jar
How can I get the magic number(aedb9ed72585ce82a68cb685d36dd090) from my testcase?
Why do you need to use these files directly out of the cache? There might be another approach which can isolate you from the cache layout.