
igg.0.6.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digg Show documentation
Show all versions of digg Show documentation
Some stellar general purpose utils.
<?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> <prerequisites> <maven>3.3.0</maven> </prerequisites> <parent> <groupId>no.digipost</groupId> <artifactId>digipost-open-super-pom</artifactId> <version>1</version> </parent> <artifactId>digg</artifactId> <version>0.6</version> <name>Digipost Digg</name> <description>Some stellar general purpose utils.</description> <url>https://github.com/digipost/digg/</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.0.53-beta</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>19.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.pholser</groupId> <artifactId>junit-quickcheck-core</artifactId> <version>0.6</version> <scope>test</scope> </dependency> <dependency> <groupId>com.pholser</groupId> <artifactId>junit-quickcheck-generators</artifactId> <version>0.6</version> <scope>test</scope> </dependency> <dependency> <groupId>nl.jqno.equalsverifier</groupId> <artifactId>equalsverifier</artifactId> <version>2.0.2</version> <scope>test</scope> </dependency> <dependency> <groupId>co.unruly</groupId> <artifactId>java-8-matchers</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.mockrunner</groupId> <artifactId>mockrunner-jdbc</artifactId> <version>1.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.21</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.11</version> <configuration> <header>src/main/license-header.txt</header> <strictCheck>true</strictCheck> <excludes> <exclude>LICENSE*</exclude> <exclude>NOTICE</exclude> <exclude>src/main/notice/NOTICE.template</exclude> <exclude>**/*.xml</exclude> <exclude>src/test/resources/**</exclude> <exclude>.editorconfig</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>1.4.1</version> <configuration> <rules> <bannedDependencies> <excludes> <exclude>*:*</exclude> </excludes> <includes> <include>*:*:*:*:test</include> </includes> <searchTransitive>true</searchTransitive> <message> Only test dependencies are allowed for this library! </message> </bannedDependencies> </rules> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>2.10</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.4</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.1</version> <configuration> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <executions> <execution> <id>check-license-header</id> <phase>test</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-Xdoclint:-missing</additionalparam> <quiet>true</quiet> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> <configuration> <includePom>true</includePom> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <goals> <goal>analyze-only</goal> </goals> <configuration> <failOnWarning>true</failOnWarning> <usedDependencies> <usedDependency>org.slf4j:slf4j-simple</usedDependency> </usedDependencies> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>test</id> <goals> <goal>enforce</goal> </goals> <phase>test</phase> </execution> </executions> </plugin> </plugins> </build> <scm> <connection>scm:git:[email protected]:digipost/digg.git</connection> <developerConnection>scm:git:[email protected]:digipost/digg.git</developerConnection> <url>https://github.com/digipost/digg/</url> <tag>0.6</tag> </scm> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy