Update pom
This commit is contained in:
parent
112251d7be
commit
2cf062f494
|
@ -1 +1 @@
|
||||||
0fb78fe3d92a2ff45ab3edb3d821d93619e43663 wiki
|
77d1002a0dd1ee7fd1551e001f365926db40dbe2 wiki
|
||||||
|
|
42
pom.xml
42
pom.xml
|
@ -1,4 +1,5 @@
|
||||||
<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">
|
<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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.xerial.snappy</groupId>
|
<groupId>org.xerial.snappy</groupId>
|
||||||
|
@ -82,10 +83,10 @@
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>2.8</version>
|
<version>2.8</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<charset>UTF-8</charset>
|
<charset>UTF-8</charset>
|
||||||
<locale>en_US</locale>
|
<locale>en_US</locale>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>attach-javadocs</id>
|
<id>attach-javadocs</id>
|
||||||
|
@ -135,20 +136,21 @@
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<version>2.2.1</version>
|
<version>2.2.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<descriptors>
|
<descriptors>
|
||||||
<descriptor>src/assembly/project.xml</descriptor>
|
<descriptor>src/assembly/project.xml</descriptor>
|
||||||
</descriptors>
|
</descriptors>
|
||||||
<appendAssemblyId>false</appendAssemblyId>
|
<appendAssemblyId>false</appendAssemblyId>
|
||||||
|
<attach>false</attach>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>make-assembly</id>
|
<id>make-assembly</id>
|
||||||
<phase>package</phase>
|
<phase>package</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>single</goal>
|
<goal>single</goal>
|
||||||
</goals>
|
</goals>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
||||||
|
@ -163,6 +165,12 @@
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
||||||
|
<url>http://code.google.com/p/snappy-java/</url>
|
||||||
|
<issueManagement>
|
||||||
|
<system>Google Code</system>
|
||||||
|
<url>http://code.google.com/p/snappy-java/issues/list</url>
|
||||||
|
</issueManagement>
|
||||||
|
<inceptionYear>2011</inceptionYear>
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:hg:https://snappy-java.googlecode.com/hg/</connection>
|
<connection>scm:hg:https://snappy-java.googlecode.com/hg/</connection>
|
||||||
<developerConnection>scm:hg:default</developerConnection>
|
<developerConnection>scm:hg:default</developerConnection>
|
||||||
|
@ -250,11 +258,11 @@
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.xerial</groupId>
|
<groupId>org.xerial</groupId>
|
||||||
<artifactId>xerial-core</artifactId>
|
<artifactId>xerial-core</artifactId>
|
||||||
<version>1.0.21</version>
|
<version>1.0.21</version>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue