mirror of
https://github.com/fluencelabs/jabci
synced 2025-03-15 10:40:51 +00:00
59 lines
1.6 KiB
XML
59 lines
1.6 KiB
XML
|
<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.github.jtmsp</groupId>
|
||
|
<artifactId>jTMSP</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
||
|
<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>
|
||
|
<version>3.0.0-b3</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<!-- <phase>generate-sources</phase> -->
|
||
|
<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>
|
||
|
<version>3.0.0-beta-3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-simple</artifactId>
|
||
|
<version>1.7.21</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|