Changed some pom.xmls and build.properties to use maven dependencies for some and put the class files not in nested jars but on the top level.

This commit is contained in:
Michael Herzberg 2015-07-08 13:03:03 +02:00
parent ab33d777fc
commit 2996a704e3
6 changed files with 35 additions and 7 deletions

View File

@ -10,6 +10,13 @@
</parent>
<artifactId>com.ibm.wala.cast.js.rhino</artifactId>
<packaging>eclipse-plugin</packaging>
<dependencies>
<dependency>
<groupId>org.mozilla</groupId>
<artifactId>rhino</artifactId>
<version>1.7R3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>

View File

@ -1,4 +1,4 @@
source.test.jar = harness-src/
output.test.jar = bin/
bin.includes = test.jar,\
source.. = harness-src/
output.. = bin/
bin.includes = .,\
META-INF/

View File

@ -11,6 +11,13 @@
<groupId>com.ibm.wala</groupId>
<artifactId>com.ibm.wala.cast.js</artifactId>
<packaging>eclipse-plugin</packaging>
<dependencies>
<dependency>
<groupId>net.htmlparser.jericho</groupId>
<artifactId>jericho-html</artifactId>
<version>3.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>

View File

@ -1,7 +1,8 @@
source.. = source/,\
data/
output.. = bin/
bin.includes = META-INF/,\
bin.includes = .,\
META-INF/,\
lib/dx.jar
jars.extra.classpath = lib/dx.jar
jre.compilation.profile = JavaSE-1.7

View File

@ -1,4 +1,5 @@
source.dalvik.jar = src/
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
lib/commons-cli-1.2.jar,\
@ -7,5 +8,4 @@ bin.includes = META-INF/,\
lib/guava-13.0.1.jar,\
lib/logback-classic-1.0.9.jar,\
lib/logback-core-1.0.9.jar,\
lib/slf4j-api-1.7.2.jar,\
dalvik.jar
lib/slf4j-api-1.7.2.jar

View File

@ -11,6 +11,19 @@
<artifactId>com.ibm.wala.dalvik</artifactId>
<packaging>eclipse-plugin</packaging>
<dependencies>
<dependency>
<groupId>dexlib</groupId>
<artifactId>dexlib</artifactId>
<version>1.3.4</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>13.0.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>