Browse Source

fixing pdfbox version and generating a new release

jhonnymertz 6 years ago
parent
commit
20bddd8dd6
2 changed files with 12 additions and 4 deletions
  1. 2 2
      README.md
  2. 10 2
      pom.xml

+ 2 - 2
README.md

@@ -22,7 +22,7 @@ In your `build.gradle`:
 	}
 	
 	dependencies {
-		compile 'com.github.jhonnymertz:java-wkhtmltopdf-wrapper:1.1.4-RELEASE'
+		compile 'com.github.jhonnymertz:java-wkhtmltopdf-wrapper:1.1.5-RELEASE'
 	}
 ```
 
@@ -33,7 +33,7 @@ In your `pom.xml`:
 		<dependency>
 			<groupId>com.github.jhonnymertz</groupId>
 			<artifactId>java-wkhtmltopdf-wrapper</artifactId>
-			<version>1.1.4-RELEASE</version>
+			<version>1.1.5-RELEASE</version>
 		</dependency>
 	</dependencies>
 

+ 10 - 2
pom.xml

@@ -3,7 +3,15 @@
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.github.jhonnymertz</groupId>
     <artifactId>java-wkhtmltopdf-wrapper</artifactId>
-    <version>1.1.4-RELEASE</version>
+    <version>1.1.5-RELEASE</version>
+
+    <licenses>
+        <license>
+            <name>MIT License</name>
+            <url>http://www.opensource.org/licenses/mit-license.php</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
 
     <dependencies>
 
@@ -17,7 +25,7 @@
         <dependency>
             <groupId>org.apache.pdfbox</groupId>
             <artifactId>pdfbox</artifactId>
-            <version>1.8.12</version>
+            <version>1.8.16</version>
             <scope>test</scope>
         </dependency>