blob: 6f3c352742a4ad6abf4365c9a6e7640a2e39c3cf [file] [log] [blame]
<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.gerritforge</groupId>
<artifactId>global-refdb</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>global-refdb</name>
<description>Global ref-database for use with Gerrit Code Review</description>
<url>https://github.com/gerritforge/global-refdb</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>
</license>
</licenses>
<scm>
<url>https://review.gerrithub.io/gerritforge/global-refdb.git</url>
<connection>https://review.gerrithub.io/gerritforge/global-refdb.git</connection>
</scm>
<developers>
<developer>
<name>Luca Milanesio</name>
</developer>
<developer>
<name>Marcin Czech</name>
</developer>
<developer>
<name>Antonio Barone</name>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>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>
</plugins>
</build>
<distributionManagement>
<repository>
<id>default</id>
<name>Local Deploy</name>
<url>file://deploy</url>
</repository>
</distributionManagement>
</project>