Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Done
-
2.0.0-alpha-4
-
None
Description
Tests in error: deprecatedFromFile(org.jboss.shrinkwrap.descriptor.api.DescriptorImporterTestCase): Specified file does not exist or is a directory: I:\Dev\JBoss\shrinkwrap%20descriptors\impl-base\target\test-classes\test.xml
Problem lies in space in one directories name. Changing
new File(this.getClass().getProtectionDomain().getCodeSource().getLocation().getPath() + "test.xml"));
to
new File(this.getClass().getProtectionDomain().getCodeSource().getLocation().toURI().getPath() + "test.xml"));
solves problems with this test.
Attachments
Issue Links
- blocks
-
SHRINKDESC-137 Compilation fails under windows
-
- Resolved
-