Skip to content

Commit 489105b

Browse files
committed
prepare release 1.0.2
1 parent 2bc505e commit 489105b

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Download a version of the tabula-java's jar, with all dependencies included, tha
1616
`tabula-java` provides a command line application:
1717

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

72-
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.
72+
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.
7373

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

pom.xml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>technology.tabula</groupId>
44
<artifactId>tabula</artifactId>
5-
<version>1.0.2-SNAPSHOT</version>
5+
<version>1.0.2</version>
66
<name>Tabula</name>
77
<description>Extract tables from PDF files</description>
88
<url>http://github.com/tabulapdf/tabula-java</url>
@@ -36,17 +36,9 @@
3636
<connection>scm:git:git@github.com:tabulapdf/tabula-java.git</connection>
3737
<developerConnection>scm:git:git@github.com:tabulapdf/tabula-java.git</developerConnection>
3838
<url>git@github.com:tabulapdf/tabula-java.git</url>
39-
<tag>tabula-1.0.0-SNAPSHOT</tag>
39+
<tag>v1.0.2</tag>
4040
</scm>
4141

42-
<repositories>
43-
<repository>
44-
<id>sonatype</id>
45-
<name>Sonatype repository</name>
46-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
47-
</repository>
48-
</repositories>
49-
5042
<properties>
5143
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5244
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

src/main/java/technology/tabula/CommandLineApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
public class CommandLineApp {
3434

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

3939
private static final int RELATIVE_AREA_CALCULATION_MODE = 0;

0 commit comments

Comments
 (0)