Skip to content

Commit fd1de65

Browse files
committed
move from ant to maven
1 parent a34f75f commit fd1de65

9 files changed

+75
-67
lines changed

build.xml

Lines changed: 0 additions & 67 deletions
This file was deleted.

jar-in-jar-loader.zip

-7.1 KB
Binary file not shown.

lib/annotations-24.2.3.jar

-7.83 KB
Binary file not shown.

lib/common-24.2.3.jar

-78.9 KB
Binary file not shown.

lib/ddmlib-24.2.3.jar

-283 KB
Binary file not shown.

lib/guava-17.0.jar

-2.14 MB
Binary file not shown.

lib/kxml2-2.3.0.jar

-42.8 KB
Binary file not shown.

lib/log4j-1.2.17.jar

-478 KB
Binary file not shown.

pom.xml

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>AndroidScreencast</groupId>
5+
<artifactId>AndroidScreencast</artifactId>
6+
<version>0.0.3</version>
7+
<name>Android Screencast</name>
8+
<dependencies>
9+
<dependency>
10+
<groupId>com.android.tools.ddms</groupId>
11+
<artifactId>ddmlib</artifactId>
12+
<version>24.2.3</version>
13+
</dependency>
14+
<dependency>
15+
<groupId>log4j</groupId>
16+
<artifactId>log4j</artifactId>
17+
<version>1.2.17</version>
18+
</dependency>
19+
</dependencies>
20+
<build>
21+
<sourceDirectory>src</sourceDirectory>
22+
<resources>
23+
<resource>
24+
<directory>src</directory>
25+
<excludes>
26+
<exclude>**/*.java</exclude>
27+
</excludes>
28+
</resource>
29+
</resources>
30+
<plugins>
31+
<plugin>
32+
<artifactId>maven-compiler-plugin</artifactId>
33+
<version>3.1</version>
34+
<configuration>
35+
<source>1.7</source>
36+
<target>1.7</target>
37+
</configuration>
38+
</plugin>
39+
<plugin>
40+
<groupId>org.apache.maven.plugins</groupId>
41+
<artifactId>maven-jar-plugin</artifactId>
42+
<configuration>
43+
<archive>
44+
<manifest>
45+
<mainClass>com.github.xsavikx.android.screencast.Main</mainClass>
46+
</manifest>
47+
</archive>
48+
</configuration>
49+
</plugin>
50+
<plugin>
51+
<groupId>org.dstovall</groupId>
52+
<artifactId>onejar-maven-plugin</artifactId>
53+
<version>1.4.5</version>
54+
<executions>
55+
<execution>
56+
<configuration>
57+
<filename>androidscreencast.jar</filename>
58+
<classifier>onejar</classifier>
59+
</configuration>
60+
<goals>
61+
<goal>one-jar</goal>
62+
</goals>
63+
</execution>
64+
</executions>
65+
</plugin>
66+
</plugins>
67+
</build>
68+
69+
<pluginRepositories>
70+
<pluginRepository>
71+
<id>onejar-maven-plugin.googlecode.com</id>
72+
<url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
73+
</pluginRepository>
74+
</pluginRepositories>
75+
</project>

0 commit comments

Comments
 (0)