2016-06-27 10:49:05 +02:00
|
|
|
<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>
|
|
|
|
|
|
|
|
|
2017-03-10 14:14:26 +01:00
|
|
|
<groupId>com.github.jtendermint</groupId>
|
2017-02-19 16:45:10 +01:00
|
|
|
<artifactId>jabci</artifactId>
|
|
|
|
<version>0.9.0-SNAPSHOT</version>
|
2016-06-27 10:49:05 +02:00
|
|
|
|
2017-03-10 15:04:28 +01:00
|
|
|
<name>com.github.jtendermint:jabci</name>
|
|
|
|
<description>Java implementation for ABCI consensus protocol from tendermint.com and related tools</description>
|
|
|
|
<url>http://www.github.com/jtendermint</url>
|
|
|
|
|
2016-10-19 11:10:07 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2017-03-10 15:04:28 +01:00
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The MIT License (MIT)</name>
|
|
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Stephan Mueller</name>
|
|
|
|
<email>mueller@ponton.de</email>
|
|
|
|
<organization>PONTON GmbH</organization>
|
|
|
|
<organizationUrl>http://www.ponton.de</organizationUrl>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<name>Wolf Posdorfer</name>
|
|
|
|
<email>posdorfer@ponton.de</email>
|
|
|
|
<organization>PONTON GmbH</organization>
|
|
|
|
<organizationUrl>http://www.ponton.de</organizationUrl>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com/jtendermint/jabci.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://github.com:jtendermint/jabci.git</developerConnection>
|
|
|
|
<url>http://github.com/jtendermint/jabci/tree/master</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<distributionManagement>
|
2016-10-19 11:10:07 +02:00
|
|
|
<snapshotRepository>
|
|
|
|
<id>oss.sonatype</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>oss.sonatype</id>
|
2017-03-10 15:04:28 +01:00
|
|
|
<url>https://oss.sonatype.org/serivce/local/staging/deploy/maven2/</url>
|
2016-10-19 11:10:07 +02:00
|
|
|
</repository>
|
2017-03-10 15:04:28 +01:00
|
|
|
</distributionManagement>
|
2016-10-19 11:10:07 +02:00
|
|
|
|
2016-06-27 10:49:05 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.os72</groupId>
|
|
|
|
<artifactId>protoc-jar-maven-plugin</artifactId>
|
2016-10-07 14:23:25 +02:00
|
|
|
<version>3.0.0.1</version>
|
2016-06-27 10:49:05 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2016-10-07 14:23:25 +02:00
|
|
|
<!--<phase>generate-sources</phase>-->
|
2016-06-27 10:49:05 +02:00
|
|
|
<phase>none</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<protocVersion>3.0.0</protocVersion> <!-- 2.4.1, 2.5.0, 2.6.1, 3.0.0 -->
|
|
|
|
<includeDirectories>
|
|
|
|
<include>src/main/proto</include>
|
|
|
|
</includeDirectories>
|
|
|
|
<inputDirectories>
|
|
|
|
<include>src/main/proto</include>
|
|
|
|
</inputDirectories>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
2016-10-07 14:23:25 +02:00
|
|
|
<version>3.1.0</version>
|
2016-06-27 10:49:05 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<version>1.7.21</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|