Skip to content

Commit

Permalink
prepare release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzido committed May 22, 2018
1 parent 2bc505e commit 489105b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Download a version of the tabula-java's jar, with all dependencies included, tha
`tabula-java` provides a command line application:

```
$ java -jar target/tabula-1.0.1-jar-with-dependencies.jar --help
$ java -jar target/tabula-1.0.2-jar-with-dependencies.jar --help
usage: tabula [-a <AREA>] [-b <DIRECTORY>] [-c <COLUMNS>] [-d] [-f
<FORMAT>] [-g] [-h] [-i] [-l] [-n] [-o <OUTFILE>] [-p <PAGES>] [-r]
[-s <PASSWORD>] [-t] [-u] [-v]
Expand Down Expand Up @@ -69,7 +69,7 @@ Tabula helps you extract tables from PDFs
-v,--version Print version and exit.
```

It also includes a debugging tool, run `java -cp ./target/tabula-1.0.1-jar-with-dependencies.jar technology.tabula.debug.Debug -h` for the available options.
It also includes a debugging tool, run `java -cp ./target/tabula-1.0.2-jar-with-dependencies.jar technology.tabula.debug.Debug -h` for the available options.

You can also integrate `tabula-java` with any JVM language. For Java examples, see the [`tests`](src/test/java/technology/tabula/) folder.

Expand Down
12 changes: 2 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>technology.tabula</groupId>
<artifactId>tabula</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.0.2</version>
<name>Tabula</name>
<description>Extract tables from PDF files</description>
<url>http://github.com/tabulapdf/tabula-java</url>
Expand Down Expand Up @@ -36,17 +36,9 @@
<connection>scm:git:[email protected]:tabulapdf/tabula-java.git</connection>
<developerConnection>scm:git:[email protected]:tabulapdf/tabula-java.git</developerConnection>
<url>[email protected]:tabulapdf/tabula-java.git</url>
<tag>tabula-1.0.0-SNAPSHOT</tag>
<tag>v1.0.2</tag>
</scm>

<repositories>
<repository>
<id>sonatype</id>
<name>Sonatype repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/technology/tabula/CommandLineApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
public class CommandLineApp {

private static String VERSION = "1.0.2";
private static String VERSION_STRING = String.format("tabula %s (c) 2012-2017 Manuel Aristarán", VERSION);
private static String VERSION_STRING = String.format("tabula %s (c) 2012-2018 Manuel Aristarán", VERSION);
private static String BANNER = "\nTabula helps you extract tables from PDFs\n\n";

private static final int RELATIVE_AREA_CALCULATION_MODE = 0;
Expand Down

0 comments on commit 489105b

Please sign in to comment.