Changeset 7774 for trunk/projects/jar2lib
- Timestamp:
- 09/16/11 12:58:55 (8 years ago)
- Location:
- trunk/projects/jar2lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/projects/jar2lib/pom.xml
r7772 r7774 37 37 <artifactId>velocity</artifactId> 38 38 <version>1.6.4</version> 39 </dependency>40 <dependency>41 <groupId>org.apache.commons</groupId>42 <artifactId>commons-lang3</artifactId>43 <version>3.0.1</version>44 39 </dependency> 45 40 </dependencies> -
trunk/projects/jar2lib/src/main/java/loci/jar2lib/Jar2Lib.java
r7772 r7774 57 57 import java.util.jar.JarFile; 58 58 59 import org.apache.commons.lang3.StringEscapeUtils;60 61 59 /** 62 60 * Generates a C++ project for C++ proxies corresponding … … 235 233 236 234 for(String libPath : libraryJars) { 237 libPath = StringEscapeUtils.escapeJava(libPath);238 235 tmpArray.add(libPath.replaceAll("\\\\", "/")); 239 236 }
Note: See TracChangeset
for help on using the changeset viewer.