VERSION: provide legacy 0.8 jTMSP implementation branch

This commit is contained in:
Stephan Müller 2017-04-12 14:24:17 +02:00
parent 228d368781
commit 081f449f5c

178
pom.xml
View File

@ -3,14 +3,58 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.github.jtmsp</groupId> <groupId>com.github.jtendermint</groupId>
<artifactId>jtmsp</artifactId> <artifactId>jabci</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.8.0-SNAPSHOT</version>
<name>com.github.jtendermint:jabci</name>
<description>Java implementation for JTMPS consensus protocol from tendermint.com and related tools</description>
<url>http://www.github.com/jtendermint</url>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> </properties>
<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>
<developer>
<name>Michael Haeusler</name>
<email>haeusler@ponton.de</email>
<organization>PONTON GmbH</organization>
<organizationUrl>http://www.ponton.de</organizationUrl>
</developer>
<developer>
<name>Manuel Meske</name>
<email>meske@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/0.8</url>
</scm>
<distributionManagement> <distributionManagement>
<snapshotRepository> <snapshotRepository>
<id>oss.sonatype</id> <id>oss.sonatype</id>
@ -18,57 +62,85 @@
</snapshotRepository> </snapshotRepository>
<repository> <repository>
<id>oss.sonatype</id> <id>oss.sonatype</id>
<url>https://oss.sonatype.org/serivce/local/statging/deploy/maven2/</url> <url>https://oss.sonatype.org/serivce/local/staging/deploy/maven2/</url>
</repository> </repository>
</distributionManagement> </distributionManagement>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version> <version>3.5.1</version>
<configuration> <configuration>
<source>1.8</source> <source>1.8</source>
<target>1.8</target> <target>1.8</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>com.github.os72</groupId> <groupId>com.github.os72</groupId>
<artifactId>protoc-jar-maven-plugin</artifactId> <artifactId>protoc-jar-maven-plugin</artifactId>
<version>3.0.0.1</version> <version>3.0.0.1</version>
<executions> <executions>
<execution> <execution>
<!--<phase>generate-sources</phase>--> <!--<phase>generate-sources</phase> -->
<phase>none</phase> <phase>none</phase>
<goals> <goals>
<goal>run</goal> <goal>run</goal>
</goals> </goals>
<configuration> <configuration>
<protocVersion>3.0.0</protocVersion> <!-- 2.4.1, 2.5.0, 2.6.1, 3.0.0 --> <protocVersion>3.0.0</protocVersion> <!-- 2.4.1, 2.5.0, 2.6.1, 3.0.0 -->
<includeDirectories> <includeDirectories>
<include>src/main/proto</include> <include>src/main/proto</include>
</includeDirectories> </includeDirectories>
<inputDirectories> <inputDirectories>
<include>src/main/proto</include> <include>src/main/proto</include>
</inputDirectories> </inputDirectories>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>com.google.protobuf</groupId> <groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId> <artifactId>protobuf-java</artifactId>
<version>3.1.0</version> <version>3.1.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId> <artifactId>slf4j-simple</artifactId>
<version>1.7.21</version> <version>1.7.21</version>
</dependency> </dependency>
</dependencies> </dependencies>
<profiles>
<profile>
<id>rel</id>
<properties>
<bamboo.planRepository.branchName>${bamboo_planRepository_branchName}</bamboo.planRepository.branchName>
</properties>
<build>
<plugins>
<plugin>
<groupId>ponton.product.maven.plugins</groupId>
<artifactId>createversion-maven-plugin</artifactId>
<version>1.2.0</version>
<configuration>
<currentBranch>${bamboo.planRepository.branchName}</currentBranch>
<branchMappings>
<branchMapping>
<branchRegex>release/(.+)</branchRegex>
<version>#{project.simpleVersion}</version>
<tagFileName>release</tagFileName>
</branchMapping>
</branchMappings>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project> </project>