| POM: |
Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.vectorprint</groupId>
<artifactId>VectorPrintReportGUI</artifactId>
<name>VectorPrintReportGUI</name>
<version>1.8</version>
<description>GUI that supports stylesheet features of Configurable Reports. Basic features are create, modify and save.
The GUI also supports syntax change of stylesheets, validation of xml for settings, validation of xml for datamapping and testing a stylesheet in a pdf.</description>
<url>https://github.com/eduarddrenth/iText-GUI</url>
<issueManagement>
<url>https://github.com/eduarddrenth/iText-GUI/issues</url>
</issueManagement>
<ciManagement>
<system>hudson</system>
<url>http://www.vectorprint.nl</url>
</ciManagement>
<inceptionYear>2015</inceptionYear>
<developers>
<developer>
<name>Eduard Drenth</name>
<email>eduarddrenth@gmail.com</email>
<organization>VectorPrint</organization>
<roles>
<role>owner</role>
<role>lead developer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>GNU Affero General Public License v3</name>
<url>http://www.fsf.org/licensing/licenses/agpl-3.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/eduarddrenth/iText-GUI.git</connection>
<developerConnection>scm:git:https://github.com/eduarddrenth/iText-GUI.git</developerConnection>
<tag>VectorPrintReportGUI-1.8</tag>
<url>https://github.com/eduarddrenth/iText-GUI</url>
</scm>
<organization>
<name>VectorPrint</name>
<url>http://www.vectorprint.nl</url>
</organization>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>junit:junit</exclude>
</excludes>
</artifactSet>
<transformers>
<transformer>
<resource>META-INF/services/com.vectorprint.configuration.binding.parameters.ParameterizableBindingFactory</resource>
</transformer>
<transformer>
<resource>META-INF/services/com.vectorprint.configuration.binding.settings.EnhancedMapBindingFactory</resource>
</transformer>
<transformer>
<resource>META-INF/services/com.vectorprint.configuration.binding.parameters.ParamFactoryValidator</resource>
</transformer>
<transformer>
<resource>META-INF/services/com.vectorprint.configuration.binding.settings.SettingsFactoryValidator</resource>
</transformer>
<transformer>
<manifestEntries>
<Main-Class>${mainClass}</Main-Class>
<X-Compile-Source-JDK>${maven.compile.java.version}</X-Compile-Source-JDK>
<X-Compile-Target-JDK>${maven.compile.java.version}</X-Compile-Target-JDK>
</manifestEntries>
</transformer>
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<id>deploy</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${java.home}/../bin/javapackager</executable>
<arguments>
<argument>-deploy</argument>
<argument>-width</argument>
<argument>1024</argument>
<argument>-height</argument>
<argument>800</argument>
<argument>-appclass</argument>
<argument>${mainClass}</argument>
<argument>-srcdir</argument>
<argument>${project.build.directory}/classes</argument>
<argument>-outdir</argument>
<argument>${project.build.directory}</argument>
<argument>-outfile</argument>
<argument>${project.build.finalName}.jar</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>default-cli</id>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${java.home}/bin/java</executable>
<commandlineArgs>${runfx.args}</commandlineArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.8</version>
<configuration>
<licenseName>agpl_v3</licenseName>
<includes>
<include>**/*java</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArguments>
<bootclasspath>${sun.boot.class.path}${path.separator}${java.home}/lib/jfxrt.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19</version>
<configuration>
<additionalClasspathElements>
<additionalClasspathElement>${java.home}/lib/jfxrt.jar</additionalClasspathElement>
</additionalClasspathElements>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>icepdf</id>
<name>icepdf Maven Repository</name>
<url>http://anonsvn.icefaces.org/repo/maven2/releases</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<mainClass>com.vectorprint.vectorprintreportgui.StylesheetBuilder</mainClass>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
|