infrastructure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cool.arch.infrastructure</groupId> <artifactId>infrastructure</artifactId> <version>1.0.1</version> </dependency>
<?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>cool.arch.infrastructure</groupId> <artifactId>infrastructure</artifactId> <version>1.0.1</version> <packaging>pom</packaging> <name>infrastructure</name> <modules> <module>base-pom</module> <module>licenses</module> <module>codequality</module> </modules> <url>https://github.com/coolarch/infrastructure</url> <description>Base support infrastructure artifacts for CoolArch projects</description> <scm> <connection>scm:git:https://github.com/coolarch/infrastructure.git</connection> <developerConnection>scm:git:https://github.com/coolarch/infrastructure.git</developerConnection> <url>https://github.com/coolarch/infrastructure</url> <tag>infrastructure-1.0.1</tag> </scm> <organization> <name>CoolArch</name> <url>http://www.arch.cool</url> </organization> <inceptionYear>2015</inceptionYear> <issueManagement> <system>GitHub</system> <url>https://github.com/coolarch/infrastructure/issues</url> </issueManagement> <developers> <developer> <id>matthew.werny</id> <name>Matthew Werny</name> <organization>CoolArch</organization> <organizationUrl>http://www.arch.cool/</organizationUrl> <timezone>-7</timezone> <email>matthew.werny@arch.cool</email> <roles> <role>Project Lead</role> </roles> </developer> </developers> <licenses> <license> <name>MIT</name> <url>http://opensource.org/licenses/MIT</url> </license> </licenses> <ciManagement> <system>TravisCI</system> <url>https://travis-ci.org/coolarch/infrastructure</url> </ciManagement> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.8</version> <configuration> <dependencyDetailsEnabled>false</dependencyDetailsEnabled> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> <reportSets> <reportSet> <reports> <report>summary</report> <report>project-team</report> <report>dependencies</report> <report>issue-tracking</report> <report>scm</report> <report>cim</report> <report>modules</report> <report>plugins</report> <report>distribution-management</report> <report>license</report> <report>dependency-management</report> <report>mailing-list</report> <report>dependency-convergence</report> <report>plugin-management</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <reportSets> <reportSet> <reports> <report>javadoc</report> <report>test-javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <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.7</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.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>