| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ Copyright 2014 Higher Frequency Trading
- ~ <p />
- ~ http://www.higherfrequencytrading.com
- ~ <p />
- ~ Licensed under the Apache License, Version 2.0 (the "License");
- ~ you may not use this file except in compliance with the License.
- ~ You may obtain a copy of the License at
- ~ <p />
- ~ http://www.apache.org/licenses/LICENSE-2.0
- ~ <p />
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS,
- ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ~ See the License for the specific language governing permissions and
- ~ limitations under the License.
- -->
- <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>root-parent-pom</artifactId>
- <version>1.1.1</version>
- <packaging>pom</packaging>
- <name>Root Parent Pom</name>
- <description>This root parent pom is used by all of OpenHft</description>
- <url>http://www.openhft.net</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>
- <comments>A business-friendly OSS license</comments>
- </license>
- </licenses>
- <developers>
- <developer>
- <name>Peter Lawrey</name>
- <email>peter.lawrey@higherfrequencytrading.com</email>
- </developer>
- <developer>
- <name>Luca Burgazzoli</name>
- <email>luca.burgazzoli@higherfrequencytrading.com</email>
- </developer>
- <developer>
- <name>Roman Leventov</name>
- <email>roman.leventov@higherfrequencytrading.com</email>
- </developer>
- <developer>
- <name>Jozsef Bartok</name>
- <email>jozsef.bartok@higherfrequencytrading.com</email>
- </developer>
- <developer>
- <name>Rob Austin</name>
- <email>rob.austin@higherfrequencytrading.com</email>
- </developer>
- <developer>
- <name>Daniel Shaya</name>
- <email>daniel.shaya@higherfrequencytrading.com</email>
- </developer>
- <developer>
- <name>Anshul Shelley</name>
- <email>anshul.shelley@higherfrequencytrading.com</email>
- </developer>
- </developers>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>1.4</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.9.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.2.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>2.8.1</version>
- </plugin>
- </plugins>
- </pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <autoVersionSubmodules>true</autoVersionSubmodules>
- <mavenExecutorId>forked-path</mavenExecutorId>
- <useReleaseProfile>false</useReleaseProfile>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <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>
- </profiles>
- <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>
- <repositories>
- <repository>
- <id>Snapshot Repository</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>
- <url>https://oss.sonatype.org/content/repositories/staging</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- </repository>
- </repositories>
- <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>root-parent-pom-1.1.1</tag>
- </scm>
- </project>
|