Skip to content

Commit

Permalink
initial after adding maven
Browse files Browse the repository at this point in the history
  • Loading branch information
christian.klingler committed Oct 11, 2013
1 parent 00d15b1 commit 07644cd
Show file tree
Hide file tree
Showing 95 changed files with 10,357 additions and 10,328 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -2,3 +2,9 @@ pdfxtk
======

PDF Extraction Toolkit


= troubleshooting

to install a file into local maven repository:
mvn install:install-file -DgroupId=com.touchgraph -DartifactId=touchgraph-mod -Dversion=1.0 -Dpackaging=jar -Dfile=${your.file}
38 changes: 0 additions & 38 deletions pdfXtk/-xhtml

This file was deleted.

18 changes: 0 additions & 18 deletions pdfXtk/.classpath

This file was deleted.

Binary file removed pdfXtk/.output.txt.swp
Binary file not shown.
23 changes: 0 additions & 23 deletions pdfXtk/.project

This file was deleted.

77 changes: 0 additions & 77 deletions pdfXtk/Resources/PDFObjectExtractor.properties

This file was deleted.

Binary file removed pdfXtk/jar/pdfxtk-backend.jar
Binary file not shown.
Binary file removed pdfXtk/lib/commons-collections-3.1.jar
Binary file not shown.
Binary file removed pdfXtk/lib/commons-logging.jar
Binary file not shown.
Binary file removed pdfXtk/lib/fontbox-1.1.0.jar
Binary file not shown.
Binary file removed pdfXtk/lib/jai_codec.jar
Binary file not shown.
Binary file removed pdfXtk/lib/jai_core.jar
Binary file not shown.
Binary file removed pdfXtk/lib/jai_imageio.jar
Binary file not shown.
Binary file removed pdfXtk/lib/log4j-1.2.14.jar
Binary file not shown.
Binary file removed pdfXtk/lib/mlibwrapper_jai.jar
Binary file not shown.
Binary file removed pdfXtk/lib/pdfanalyser-backend-20110211.jar
Binary file not shown.
Binary file removed pdfXtk/lib/pdfbox-1.1.0.jar
Binary file not shown.
Binary file removed pdfXtk/lib/pdfbox-1.8.2/fontbox-1.8.2.jar
Binary file not shown.
Binary file removed pdfXtk/lib/pdfbox-1.8.2/pdfbox-1.8.2.jar
Binary file not shown.
Binary file removed pdfXtk/lib/pdfbox-1.8.2/pdfbox-app-1.8.2.jar
Binary file not shown.
Binary file removed pdfXtk/lib/xercesImpl.jar
Binary file not shown.
Binary file removed pdfXtk/lib/xml-apis.jar
Binary file not shown.
135 changes: 135 additions & 0 deletions pdfXtk/pom.xml
@@ -0,0 +1,135 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.tamirhassan</groupId>
<artifactId>pdfXtk</artifactId>
<version>0.9-SNAPSHOT</version>


<properties>
<pdfbox.version>1.8.1</pdfbox.version>
<jai.version>1.1.3</jai.version>
</properties>


<dependencies>

<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.1</version>
</dependency>

<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</version>
</dependency>

<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>${pdfbox.version}</version>
</dependency>

<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>fontbox</artifactId>
<version>${pdfbox.version}</version>
</dependency>

<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox-app</artifactId>
<version>${pdfbox.version}</version>
</dependency>


<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
</dependency>

<dependency>
<groupId>javax.media.jai</groupId>
<artifactId>com.springsource.javax.media.jai.core</artifactId>
<version>1.1.3</version>
</dependency>

<dependency>
<groupId>javax.media.jai</groupId>
<artifactId>com.springsource.javax.media.jai.codec</artifactId>
<version>1.1.3</version>
</dependency>

<dependency>
<groupId>xerces</groupId>
<artifactId>xerces</artifactId>
<version>2.4.0</version>
</dependency>


<!--
<dependency>
<groupId>com.touchgraph</groupId>
<artifactId>touchgraph-mod</artifactId>
<version>1.0</version>
</dependency>
-->

<dependency>
<groupId>com.touchgraph</groupId>
<artifactId>TGWikiBrowser</artifactId>
<version>1.0</version>
</dependency>


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>

</dependencies>



<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>


<repositories>

<!-- alternative way to get jai dependency -->
<repository>
<id>com.springsource.repository.bundles.external</id>
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
<url>http://repository.springsource.com/maven/bundles/external</url>
</repository>


<!-- to have a local lib dir for dependencies that aren't available on maven repositories -->
<repository>
<id>lib</id>
<name>lib</name>
<releases>
<enabled>true</enabled>
<checksumPolicy>ignore</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>file://${project.basedir}/lib</url>
</repository>
</repositories>


</project>

0 comments on commit 07644cd

Please sign in to comment.