Skip to content

Commit daa5003

Browse files
author
Alex Wilson
committed
Merge branch 'master' of github.com:tabulapdf/tabula-java
2 parents 4d78e4c + 346ac27 commit daa5003

6 files changed

Lines changed: 39 additions & 33 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: windows-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Set up JDK 11
12+
uses: actions/setup-java@v2
13+
with:
14+
java-version: '11'
15+
distribution: 'adopt'
16+
cache: maven
17+
- name: Build with Maven
18+
run: mvn --batch-mode test

.github/workflows/tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Set up JDK 11
12+
uses: actions/setup-java@v2
13+
with:
14+
java-version: '11'
15+
distribution: 'adopt'
16+
cache: maven
17+
- name: Build with Maven
18+
run: mvn --batch-mode test

.travis.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tabula-java [![Build Status](https://travis-ci.org/tabulapdf/tabula-java.svg?branch=master)](https://travis-ci.org/tabulapdf/tabula-java) [![Build status](https://ci.appveyor.com/api/projects/status/l5gym1mjhrd2v8yn?svg=true)](https://ci.appveyor.com/project/jazzido/tabula-java)
1+
tabula-java [![Build Status](https://travis-ci.org/tabulapdf/tabula-java.svg?branch=master)](https://travis-ci.org/tabulapdf/tabula-java)
22
===========
33

44
`tabula-java` is a library for extracting tables from PDF files — it is the table extraction engine that powers [Tabula](http://tabula.technology/) ([repo](http://github.com/tabulapdf/tabula)). You can use `tabula-java` as a command-line tool to programmatically extract tables from PDFs.

appveyor.yml

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

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
<dependency>
251251
<groupId>org.slf4j</groupId>
252252
<artifactId>slf4j-api</artifactId>
253-
<version>1.7.32</version>
253+
<version>1.7.35</version>
254254
</dependency>
255255

256256
<dependency>
@@ -262,7 +262,7 @@
262262
<dependency>
263263
<groupId>org.apache.pdfbox</groupId>
264264
<artifactId>pdfbox</artifactId>
265-
<version>2.0.24</version>
265+
<version>2.0.25</version>
266266
</dependency>
267267

268268
<dependency>

0 commit comments

Comments
 (0)