deepdiff-app
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.bitbucket.deepdiff</groupId>
<artifactId>deepdiff-app</artifactId>
<version>1.0.2</version>
</dependency><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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.bitbucket.deepdiff</groupId>
<artifactId>pom</artifactId>
<version>1.0.0</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>deepdiff-app</artifactId>
<version>1.0.2</version>
<packaging>jar</packaging>
<name>deepdiff-app</name>
<description>DeepDiff Application</description>
<scm>
<connection>scm:hg:http://bitbucket.org/deepdiff/deepdiff</connection>
<developerConnection>scm:hg:https://bitbucket.org/deepdiff/deepdiff</developerConnection>
<url>https://bitbucket.org/deepdiff/deepdiff</url>
</scm>
<properties>
<project.version.exe>1.0.0</project.version.exe>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>deepdiff.app.DeepDiff</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.dstovall</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<version>1.4.4</version>
<executions>
<execution>
<configuration>
<onejarVersion>0.97</onejarVersion>
<attachToBuild>true</attachToBuild>
<filename>deepdiff-${project.version}.jar</filename>
<classifier>onejar</classifier>
</configuration>
<goals>
<goal>one-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.bluestemsoftware.open.maven.plugin</groupId>
<artifactId>launch4j-plugin</artifactId>
<version>1.5.0.0</version>
<executions>
<execution>
<id>launch4j</id>
<phase>package</phase>
<goals>
<goal>launch4j</goal>
</goals>
<configuration>
<dontWrapJar>false</dontWrapJar>
<headerType>console</headerType> <!-- For now, console-only -->
<outfile>target/deepdiff-${project.version}.exe</outfile>
<jar>target/deepdiff-${project.version}.jar</jar>
<errTitle>deepdiff</errTitle>
<customProcName>true</customProcName>
<icon>src/launch4j/resources/deepdiff.ico</icon>
<jre>
<minVersion>1.6.0</minVersion>
</jre>
<maxHeapSize />
<maxHeapPercent />
<versionInfo>
<fileVersion>${project.version.exe}.0</fileVersion>
<txtFileVersion>${project.version}</txtFileVersion>
<fileDescription>DeepDiff v${project.version} EXE</fileDescription>
<copyright>Copyright 2011 DeepDiff Contributors</copyright>
<productVersion>${project.version.exe}.0</productVersion>
<txtProductVersion>${project.version}</txtProductVersion>
<productName>DeepDiff</productName>
<internalName>deepdiff-${project.version}</internalName>
<originalFilename>deepdiff-${project.version}.exe</originalFilename>
</versionInfo>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0-beta-3</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.2</version>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
<reports>
<report>dependencies</report>
<report>index</report>
<report>issue-tracking</report>
<report>license</report>
<report>scm</report>
</reports>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.2</version>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>deepdiff-engine</artifactId>
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>r09</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<pluginRepositories>
<pluginRepository>
<id>onejar-maven-plugin.googlecode.com</id>
<url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
</pluginRepository>
</pluginRepositories>
</project>