chronicle-nexus-root-pom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.openhft</groupId> <artifactId>chronicle-nexus-root-pom</artifactId> <version>1.0.11</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.openhft</groupId> <artifactId>chronicle-nexus-root-pom</artifactId> <version>1.0.11</version> <packaging>pom</packaging> <name>Chronicle Nexus Root Parent Pom</name> <description> This root parent pom is used by all open source projects that are released to the Chronicle Nexus Server </description> <url>http://chronicle.software</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <prerequisites> <maven>3.0</maven> </prerequisites> <developers> <developer> <name>Peter Lawrey</name> <email>peter.lawrey@higherfrequencytrading.com</email> </developer> <developer> <name>Rob Austin</name> <email>rob.austin@higherfrequencytrading.com</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> <version>1.0-beta-2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.servicemix.tooling</groupId> <artifactId>depends-maven-plugin</artifactId> <version>1.3</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> </plugin> </plugins> </build> <repositories> <repository> <id>chronicle-enterprise-snapshots</id> <name>Snapshot Repository</name> <url> http://nexus.chronicle.software/content/repositories/snapshots </url> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>chronicle-enterprise-release</id> <url> http://nexus.chronicle.software/content/repositories/releases </url> <releases> <enabled>true</enabled> </releases> </repository> <repository> <id>sonatype-nexus-snapshots</id> <name>Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>sonatype-nexus-staging</id> <name>Release Repository</name> <url>https://oss.sonatype.org/content/repositories/staging</url> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <profiles> <profile> <id>sign-artifact</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>openhft</id> <activation> <property> <name>openhft</name> </property> </activation> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> <profile> <id>chronicle-nexus</id> <activation> <property> <name>!openhft</name> </property> </activation> <distributionManagement> <repository> <id>chronicle-enterprise-release</id> <url>http://nexus.chronicle.software/content/repositories/releases</url> </repository> <snapshotRepository> <id>chronicle-enterprise-snapshots</id> <url>http://nexus.chronicle.software/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </profile> </profiles> <scm> <url>scm:git:git@github.com:OpenHFT/OpenHFT.git</url> <connection>scm:git:git@github.com:OpenHFT/OpenHFT.git</connection> <developerConnection>scm:git:git@github.com:OpenHFT/OpenHFT.git</developerConnection> <tag>chronicle-nexus-root-pom-1.0.11</tag> </scm> </project>