|
@@ -3,7 +3,17 @@
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.github.jhonnymertz</groupId>
|
|
<groupId>com.github.jhonnymertz</groupId>
|
|
<artifactId>java-wkhtmltopdf-wrapper</artifactId>
|
|
<artifactId>java-wkhtmltopdf-wrapper</artifactId>
|
|
- <version>1.1.6-RELEASE</version>
|
|
|
|
|
|
+ <version>1.1.8-RELEASE</version>
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
+
|
|
|
|
+ <name>Java WkHtmlToPdf Wrapper</name>
|
|
|
|
+ <description>A Java based wrapper for the wkhtmltopdf command line tool. As the name implies, it uses WebKit to convert HTML documents to PDFs.</description>
|
|
|
|
+ <url>https://github.com/jhonnymertz/java-wkhtmltopdf-wrapper</url>
|
|
|
|
+
|
|
|
|
+ <issueManagement>
|
|
|
|
+ <url>https://github.com/jhonnymertz/java-wkhtmltopdf-wrapper/issues</url>
|
|
|
|
+ <system>GitHub Issues</system>
|
|
|
|
+ </issueManagement>
|
|
|
|
|
|
<licenses>
|
|
<licenses>
|
|
<license>
|
|
<license>
|
|
@@ -13,6 +23,21 @@
|
|
</license>
|
|
</license>
|
|
</licenses>
|
|
</licenses>
|
|
|
|
|
|
|
|
+ <scm>
|
|
|
|
+ <url>https://github.com/jhonnymertz/java-wkhtmltopdf-wrapper</url>
|
|
|
|
+ <connection>scm:git:git://github.com/jhonnymertz/java-wkhtmltopdf-wrapper.git</connection>
|
|
|
|
+ <developerConnection>scm:git:git@github.com:jhonnymertz/java-wkhtmltopdf-wrapper.git</developerConnection>
|
|
|
|
+ </scm>
|
|
|
|
+
|
|
|
|
+ <developers>
|
|
|
|
+ <developer>
|
|
|
|
+ <email>jhonnymertz@gmail.com</email>
|
|
|
|
+ <name>Jhonny Mertz</name>
|
|
|
|
+ <url>https://github.com/jhonnymertz</url>
|
|
|
|
+ <id>jhonnymertz</id>
|
|
|
|
+ </developer>
|
|
|
|
+ </developers>
|
|
|
|
+
|
|
<dependencies>
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
@@ -108,4 +133,64 @@
|
|
</plugins>
|
|
</plugins>
|
|
</build>
|
|
</build>
|
|
|
|
|
|
|
|
+ <profiles>
|
|
|
|
+ <profile>
|
|
|
|
+ <id>ossrh</id>
|
|
|
|
+ <properties>
|
|
|
|
+ <gpg.executable>gpg</gpg.executable>
|
|
|
|
+ <gpg.keyname>${env.GPG_KEYNAME}</gpg.keyname>
|
|
|
|
+ <gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
|
|
|
|
+ <gpg.defaultKeyring>false</gpg.defaultKeyring>
|
|
|
|
+ <gpg.publicKeyring>${env.GPG_DIR}/pubring.gpg</gpg.publicKeyring>
|
|
|
|
+ <gpg.secretKeyring>${env.GPG_DIR}/secring.gpg</gpg.secretKeyring>
|
|
|
|
+ </properties>
|
|
|
|
+ <activation>
|
|
|
|
+ <property>
|
|
|
|
+ <name>performRelease</name>
|
|
|
|
+ <value>true</value>
|
|
|
|
+ </property>
|
|
|
|
+ </activation>
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <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>
|
|
|
|
+ </executions>
|
|
|
|
+ </plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.sonatype.plugins</groupId>
|
|
|
|
+ <artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
+ <version>1.6.2</version>
|
|
|
|
+ <extensions>true</extensions>
|
|
|
|
+ <configuration>
|
|
|
|
+ <serverId>ossrh</serverId>
|
|
|
|
+ <nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
+ <autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+ </profile>
|
|
|
|
+ </profiles>
|
|
|
|
+
|
|
|
|
+ <distributionManagement>
|
|
|
|
+ <snapshotRepository>
|
|
|
|
+ <id>ossrh</id>
|
|
|
|
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
+ </snapshotRepository>
|
|
|
|
+ <repository>
|
|
|
|
+ <id>ossrh</id>
|
|
|
|
+ <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
+ </repository>
|
|
|
|
+ </distributionManagement>
|
|
|
|
+
|
|
</project>
|
|
</project>
|