parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.saintandreas</groupId> <artifactId>parent</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.saintandreas</groupId> <artifactId>parent</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>Saint Andreas Libraries</name> <description>Saint Andreas libraries parent pom</description> <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> <url>http://rifty-business.blogspot.com/</url> <inceptionYear>2013</inceptionYear> <developers> <developer> <id>bdavis</id> <name>Brad Davis</name> <email>bdavis@saintandreas.org</email> <roles> <role>Lead Architect</role> </roles> <timezone>-8</timezone> </developer> <developer> <id>abenton</id> <name>Alex Benton</name> <email>alex@bentonian.org</email> <roles> <role>Committer</role> </roles> <timezone>GMT</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/jherico/saintandreas-parent.git</connection> <developerConnection>scm:git:git@github.com:jherico/saintandreas-parent.git</developerConnection> <url>https://github.com/jherico/saintandreas-parent</url> </scm> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.6</version> <configuration> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> <!-- waiting for MPIR-267 --> </configuration> <reportSets> <reportSet> <reports> <report>index</report> <report>summary</report> <report>dependency-info</report> <report>modules</report> <report>license</report> <report>project-team</report> <report>scm</report> <report>issue-tracking</report> <report>mailing-list</report> <report>dependency-management</report> <report>dependencies</report> <report>dependency-convergence</report> <report>cim</report> <report>plugin-management</report> <report>plugins</report> <report>distribution-management</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <properties> <slf4j.version>[1.7.5, 1.8)</slf4j.version> <lwjgl.version>[2.9.1, 3)</lwjgl.version> <jackson.version>[2.3.3, 3)</jackson.version> <natives>${basedir}/target/natives/</natives> <release.natives>natives/</release.natives> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <github.global.server>github</github.global.server> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>17.0</version> </dependency> <dependency> <groupId>org.jscience</groupId> <artifactId>jscience</artifactId> <version>[4.3.1, 5)</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>[2.3, 3)</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>1.3.9</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>uk.co.caprica</groupId> <artifactId>vlcj</artifactId> <version>[3, 4)</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>[4, 5)</version> </dependency> <dependency> <groupId>org.lwjgl.lwjgl</groupId> <artifactId>lwjgl</artifactId> <version>${lwjgl.version}</version> </dependency> <dependency> <groupId>org.lwjgl.lwjgl</groupId> <artifactId>lwjgl_util</artifactId> <version>${lwjgl.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>[4, 5)</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> <pluginManagement> <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> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>com.googlecode.mavennatives</groupId> <artifactId>maven-nativedependencies-plugin</artifactId> <executions> <execution> <id>unpacknatives</id> <phase>generate-resources</phase> <goals> <goal>copy</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </project>