зеркало из https://github.com/github/vitess-gh.git
111 строки
3.5 KiB
XML
111 строки
3.5 KiB
XML
<?xml version="1.0"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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.youtube.vitess</groupId>
|
|
<artifactId>vitess-parent</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<url>https://github.com/youtube/vitess/</url>
|
|
<description>Umbrella project for all Java activities for Vitess</description>
|
|
<inceptionYear>2014</inceptionYear>
|
|
<modules>
|
|
<module>client</module>
|
|
<module>gorpc</module>
|
|
<module>grpc-client</module>
|
|
<module>hadoop</module>
|
|
</modules>
|
|
|
|
<organization>
|
|
<name>YouTube</name>
|
|
<url>https://www.youtube.com</url>
|
|
</organization>
|
|
<developers>
|
|
<developer>
|
|
<id>timofeyb</id>
|
|
<name>Timothy Basanov</name>
|
|
</developer>
|
|
<developer>
|
|
<id>GarethCOliver</id>
|
|
<name>Gareth Oliver</name>
|
|
</developer>
|
|
<developer>
|
|
<id>anandhenry</id>
|
|
<name>Anand Henry</name>
|
|
</developer>
|
|
</developers>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>BSD-style license</name>
|
|
<url>https://github.com/youtube/vitess/blob/master/LICENSE</url>
|
|
<distribution>manual</distribution>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<connection>scm:git:git@github.com:youtube/vitess.git</connection>
|
|
<developerConnection>
|
|
scm:git:git@github.com:youtube/vitess.git
|
|
</developerConnection>
|
|
<url>git@github.com:youtube/vitess.git</url>
|
|
</scm>
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/youtube/vitess/issues</url>
|
|
</issueManagement>
|
|
<mailingLists>
|
|
<mailingList>
|
|
<archive>https://groups.google.com/forum/#!forum/vitess</archive>
|
|
</mailingList>
|
|
</mailingLists>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<grpc.version>0.8.0</grpc.version>
|
|
<guava.version>18.0</guava.version>
|
|
<junit.version>4.12</junit.version>
|
|
<log4j.version>1.2.17</log4j.version>
|
|
<protobuf.java.version>3.0.0-alpha-3.1</protobuf.java.version>
|
|
</properties>
|
|
|
|
<!-- define dependency versions -->
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>${guava.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>${log4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-java</artifactId>
|
|
<version>${protobuf.java.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.3</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|