virtualheap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.betfair.platform</groupId> <artifactId>virtualheap</artifactId> <version>1.3.0</version> </dependency>
<!-- Copyright 2013, The Sporting Exchange Limited 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 http://www.apache.org/licenses/LICENSE-2.0 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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.betfair.platform</groupId> <artifactId>virtualheap</artifactId> <packaging>jar</packaging> <version>1.3.0</version> <name>virtualheap</name> <description>A framework for replicated objects</description> <organization> <name>Betfair</name> <url>http://www.betfair.com</url> </organization> <developers> <developer> <id>all</id> <name>All developers</name> <email>virtualheap@googlegroups.com</email> </developer> </developers> <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://betfair.github.io/virtualheap</url> <issueManagement> <system>GitHub</system> <url>https://github.com/betfair/virtualheap/issues</url> </issueManagement> <mailingLists> <mailingList> <name>virtualheap user list</name> <post>virtualheap@googlegroups.com</post> <archive>https://groups.google.com/forum/#!forum/virtualheap</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:git@github.com:betfair/virtualheap.git</connection> <url>https://github.com/betfair/virtualheap.git</url> <developerConnection>scm:git:git@github.com:betfair/virtualheap</developerConnection> </scm> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/betfair/virtualheap</url> </ciManagement> <properties> <junit.dependency.version>4.6</junit.dependency.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <encoding>utf-8</encoding> </configuration> </plugin> <!-- Generate source jars for all projects during the package phase of the build --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> <configuration> <includes> <exclude>**/utils/*.class</exclude> </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.dependency.version}</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <site> <id>github-pages</id> <url>file:${site.deploy.dir}</url> </site> </distributionManagement> </project>