Skip to content

Commit

Permalink
fix: #233, #236, #239, #241, #246 and update all other dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmanko committed Jun 5, 2022
1 parent a23fcdc commit 943e453
Show file tree
Hide file tree
Showing 6 changed files with 959 additions and 988 deletions.
15 changes: 7 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
wrapper {
gradleVersion = '2.13'
gradleVersion = '7.4.2'
}

apply plugin: 'java'
Expand All @@ -26,11 +26,10 @@ repositories {
}

dependencies {
compile 'org.apache.pdfbox:pdfbox:2.0.3'
compile 'org.slf4j:slf4j-api:1.7.21'
compile 'com.google.guava:guava:20.0'
compile 'org.apache.commons:commons-csv:1.4'
compile group: 'org.jsoup', name: 'jsoup', version: '1.9.2'
testCompile 'junit:junit:4.12'
testCompile 'commons-io:commons-io:2.4'
implementation 'org.apache.pdfbox:pdfbox:2.0.26'
implementation 'org.slf4j:slf4j-api:1.7.36'
implementation 'org.apache.commons:commons-csv:1.9.0'
implementation group: 'org.jsoup', name: 'jsoup', version: '1.15.1'
testImplementation 'junit:junit:4.13.2'
testImplementation 'commons-io:commons-io:2.11.0'
}
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
netbeans.org-netbeans-modules-javascript2-requirejs.enabled=true
65 changes: 30 additions & 35 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.dhorions</groupId>
<artifactId>boxable</artifactId>
<version>1.6</version>
<version>1.7</version>
<packaging>jar</packaging>

<name>Boxable, a high-level API to creates table on top of Apache Pdfbox</name>
Expand All @@ -22,51 +22,45 @@
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>2.0.21</version>
<version>2.0.26</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>29.0-android</version>
<version>1.7.36</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.2</version>
<version>1.9.0</version>
<scope>compile</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<version>2.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.9.2</version>
<version>1.15.1</version>
<type>jar</type>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
Expand Down Expand Up @@ -117,37 +111,38 @@
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugin>
</plugins>
</build>
<properties>
Expand Down
Loading

0 comments on commit 943e453

Please sign in to comment.