pom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.bitbucket.deepdiff</groupId>
<artifactId>pom</artifactId>
<version>1.0.0</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.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.bitbucket.deepdiff</groupId>
<artifactId>pom</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>deepdiff</name>
<description>DeepDiff</description>
<url>http://deepdiff.bitbucket.org/</url>
<inceptionYear>2011</inceptionYear>
<issueManagement>
<system>Bitbucket</system>
<url>https://bitbucket.org/deepdiff/deepdiff/issues</url>
</issueManagement>
<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>
<developers>
<developer>
<id>deepdiff</id>
<name>Original DeepDiff Contributors</name>
<url>https://bitbucket.org/deepdiff</url>
</developer>
<developer>
<id>davidmc24</id>
<name>David M. Carr</name>
<url>https://bitbucket.org/davidmc24</url>
<timezone>-5</timezone>
</developer>
</developers>
<distributionManagement>
<site>
<id>deepdiff.bitbucket.org</id>
<url>file://deepdiff.bitbucket.org</url>
</site>
</distributionManagement>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>../LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.3</version>
<configuration>
<useAgent>true</useAgent>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>