|
@@ -15,34 +15,19 @@ If you are using Gradle/Maven, see example below:
|
|
##### Gradle
|
|
##### Gradle
|
|
In your `build.gradle`:
|
|
In your `build.gradle`:
|
|
```groovy
|
|
```groovy
|
|
- allprojects {
|
|
|
|
- repositories {
|
|
|
|
- maven { url "https://jitpack.io" }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
dependencies {
|
|
dependencies {
|
|
- compile 'com.github.jhonnymertz:java-wkhtmltopdf-wrapper:1.1.5-RELEASE'
|
|
|
|
|
|
+ compile 'com.github.jhonnymertz:java-wkhtmltopdf-wrapper:1.1.7-RELEASE'
|
|
}
|
|
}
|
|
```
|
|
```
|
|
|
|
|
|
##### Maven
|
|
##### Maven
|
|
In your `pom.xml`:
|
|
In your `pom.xml`:
|
|
```xml
|
|
```xml
|
|
- <dependencies>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.github.jhonnymertz</groupId>
|
|
|
|
- <artifactId>java-wkhtmltopdf-wrapper</artifactId>
|
|
|
|
- <version>1.1.5-RELEASE</version>
|
|
|
|
- </dependency>
|
|
|
|
- </dependencies>
|
|
|
|
-
|
|
|
|
- <repositories>
|
|
|
|
- <repository>
|
|
|
|
- <id>jitpack.io</id>
|
|
|
|
- <url>https://jitpack.io</url>
|
|
|
|
- </repository>
|
|
|
|
- </repositories>
|
|
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.github.jhonnymertz</groupId>
|
|
|
|
+ <artifactId>java-wkhtmltopdf-wrapper</artifactId>
|
|
|
|
+ <version>1.1.6-RELEASE</version>
|
|
|
|
+ </dependency>
|
|
```
|
|
```
|
|
|
|
|
|
Usage
|
|
Usage
|