-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added packages and separated report package
- Loading branch information
swsachith@gmail.com
authored and
swsachith@gmail.com
committed
May 19, 2015
1 parent
1f8c8cf
commit 191dba0
Showing
81 changed files
with
7,510 additions
and
7,533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>lk.score</groupId> | ||
<artifactId>Androspy</artifactId> | ||
<packaging>pom</packaging> | ||
<version>1.0-SNAPSHOT</version> | ||
<modules> | ||
<module>report</module> | ||
</modules> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>mysql</groupId> | ||
<artifactId>mysql-connector-java</artifactId> | ||
<version>5.1.18</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.xerial</groupId> | ||
<artifactId>sqlite-jdbc</artifactId> | ||
<version>3.8.6</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.itextpdf</groupId> | ||
<artifactId>itextpdf</artifactId> | ||
<version>5.5.6</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.itextpdf</groupId> | ||
<artifactId>itext-pdfa</artifactId> | ||
<version>5.5.6</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.itextpdf</groupId> | ||
<artifactId>itext-xtra</artifactId> | ||
<version>5.5.6</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-compress</artifactId> | ||
<version>1.5</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.sf.jasperreports</groupId> | ||
<artifactId>jasperreports</artifactId> | ||
<version>5.0.4</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.json</groupId> | ||
<artifactId>json</artifactId> | ||
<version>20141113</version> | ||
</dependency> | ||
|
||
|
||
<dependency> | ||
<groupId>org.eclipse.core</groupId> | ||
<artifactId>commands</artifactId> | ||
<version>3.3.0-I20070605-0010</version> | ||
</dependency> | ||
|
||
<!-- swt dependency --> | ||
<dependency> | ||
<groupId>org.eclipse.swt</groupId> | ||
<artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId> | ||
<version>4.3</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
</project> |
Oops, something went wrong.