akiban-persistit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.akiban</groupId> <artifactId>akiban-persistit</artifactId> <version>3.3.0</version> </dependency>
<?xml version="1.0"?> <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>com.akiban</groupId> <artifactId>akiban-persistit</artifactId> <version>3.3.0</version> <packaging>jar</packaging> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <name>akiban-persistit</name> <inceptionYear>2005</inceptionYear> <url>http://www.akiban.com/akiban-persistit</url> <organization> <name>Akiban Technologies, Inc</name> <url>http://www.akiban.com</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <properties> <!-- this is the default version number, Jenkins job sets this to the official number --> <BZR_REVISION /> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <distributionManagement> <snapshotRepository> <id>akiban</id> <name>akiban-snapshots</name> <url>http://akiban.artifactoryonline.com/akiban/libs-snapshots-local</url> </snapshotRepository> <repository> <id>akiban</id> <name>akiban-releases</name> <url>http://akiban.artifactoryonline.com/akiban/libs-releases-local</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1</version> <exclusions> <exclusion> <groupId>logkit</groupId> <artifactId>logkit</artifactId> </exclusion> <exclusion> <groupId>avalon-framework</groupId> <artifactId>avalon-framework</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>3.1.3.RELEASE</version> <scope>test</scope> </dependency> </dependencies> <pluginRepositories> <pluginRepository> <id>maven-java-formatter-plugin</id> <name>Maven2 Java Formatter Plugin repository</name> <url>https://raw.github.com/benalexau/maven-java-formatter-plugin/master/releases/</url> </pluginRepository> </pluginRepositories> <build> <finalName>${project.artifactId}-${project.version}${BZR_REVISION}</finalName> <resources> <resource> <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <filtering>false</filtering> <includes> <include>LICENSE.txt</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>com/persistit/persistit_version</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>com/persistit/persistit_version</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.4.3</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>reserve-network-port</id> <goals> <goal>reserve-network-port</goal> </goals> <phase>process-resources</phase> <configuration> <portNames> <portName>rmiport</portName> </portNames> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.0.4</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.1</version> <configuration> <argLine>-Xmx640m -Xms128m -Drmiport=${rmiport} -Xrunjdwp:transport=dt_socket,address=8000,suspend=n,server=y</argLine> <includes> <include>**/*Test.java</include> <include>**/*Test?.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>rmic-maven-plugin</artifactId> <version>1.0</version> <configuration> <outputDirectory>target/classes/</outputDirectory> </configuration> <executions> <execution> <id>rmi compilation</id> <goals> <goal>rmic</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/main/resources/assembly_descriptor.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <!-- This is used for inheritance merges ?? --> <phase>install</phase> <!-- Append to the install phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>1.2</version> <configuration> <findbugsXmlOutput>true</findbugsXmlOutput> <findbugsXmlWithMessages>true</findbugsXmlWithMessages> <xmlOutput>true</xmlOutput> <excludeFilterFile>src/etc/findbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> <plugin> <groupId>com.atlassian.maven.plugins</groupId> <artifactId>maven-clover2-plugin</artifactId> <version>3.0.1</version> <configuration> <generateHistorical>true</generateHistorical> <historyDir>/clover/history</historyDir> <license>${clover.license}</license> <generateXml>true</generateXml> </configuration> </plugin> <plugin> <inherited>false</inherited> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.10.b1</version> <configuration> <!-- Note plugin WARNs header wasn't specified but still works as desired (multi-module bug?) --> <header>src/etc/HEADER.txt</header> <headerSections> <headerSection> <key>__YEAR_SECTION__</key> <defaultValue>2013</defaultValue> <!-- [2005-2011]-2013 | 2013 --> <ensureMatch>20(05|06|07|08|09|10|11)\-20(12|13)|20(12|13)</ensureMatch> --> </headerSection> </headerSections> <aggregate>true</aggregate> <strictCheck>true</strictCheck> <failIfMissing>true</failIfMissing> <excludes> <!-- Non-distributed benchmark code --> <exclude>bench/**</exclude> <!-- Docs --> <exclude>doc/**</exclude> <exclude>src/main/resources/**</exclude> <exclude>src/test/resources/**</exclude> <!-- IDE files --> <exclude>.idea/**</exclude> <exclude>.settings/**</exclude> <exclude>.project</exclude> <exclude>.classpath</exclude> <exclude>.bzrignore</exclude> <exclude>src/etc/eclipse*.xml</exclude> <!-- Other --> <exclude>LICENSE.txt</exclude> <exclude>README.rst</exclude> <exclude>maven-eclipse.xml</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>com.googlecode.maven-java-formatter-plugin</groupId> <artifactId>maven-java-formatter-plugin</artifactId> <version>0.4.0.e371sr1</version> <configuration> <configFile>${project.basedir}/src/etc/eclipse-format-config.xml</configFile> </configuration> <executions> <execution> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> org.codehaus.mojo </groupId> <artifactId> build-helper-maven-plugin </artifactId> <versionRange> [1.5,) </versionRange> <goals> <goal> reserve-network-port </goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId> org.codehaus.mojo </groupId> <artifactId> rmic-maven-plugin </artifactId> <versionRange> [1.0,) </versionRange> <goals> <goal>rmic</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>com.googlecode.maven-java-formatter-plugin</groupId> <artifactId>maven-java-formatter-plugin</artifactId> <versionRange>[0.4.0.e371sr1,)</versionRange> <goals> <goal>format</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.4.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> </plugin> </plugins> </reporting> <scm> <connection>scm:bazaar:https://code.launchpad.net/akiban-persistit</connection> <url>https://code.launchpad.net/akiban-persistit</url> </scm> <developers> <developer> <id>peter</id> <name>Peter Beaman</name> <email>pbeaman@akiban.com</email> <organization>Akiban Technologies, Inc.</organization> <organizationUrl>http://akiban.com</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-5</timezone> </developer> <developer> <id>nathan</id> <name>Nathan Williams</name> <email>nwilliams@akiban.com</email> <organization>Akiban Technologies, Inc.</organization> <organizationUrl>http://akiban.com</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-5</timezone> </developer> </developers> <description>Java B+Tree Key-Value Store Library</description> </project>