|
@@ -117,6 +117,8 @@
|
|
<!-- </exclusion>-->
|
|
<!-- </exclusion>-->
|
|
<!-- </exclusions>-->
|
|
<!-- </exclusions>-->
|
|
</dependency>
|
|
</dependency>
|
|
|
|
+
|
|
|
|
+
|
|
</dependencies>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</dependencyManagement>
|
|
|
|
|
|
@@ -168,6 +170,7 @@
|
|
<outputEncoding>UTF-8</outputEncoding>
|
|
<outputEncoding>UTF-8</outputEncoding>
|
|
<skip>${checkstyle.skip}</skip>
|
|
<skip>${checkstyle.skip}</skip>
|
|
<configLocation>.style/alibaba.xml</configLocation>
|
|
<configLocation>.style/alibaba.xml</configLocation>
|
|
|
|
+ <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
|
|
<consoleOutput>true</consoleOutput>
|
|
<consoleOutput>true</consoleOutput>
|
|
<failsOnError>false</failsOnError>
|
|
<failsOnError>false</failsOnError>
|
|
<linkXRef>false</linkXRef>
|
|
<linkXRef>false</linkXRef>
|
|
@@ -213,6 +216,26 @@
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.5.3</version>
|
|
<version>3.5.3</version>
|
|
</plugin>
|
|
</plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.xolstice.maven.plugins</groupId>
|
|
|
|
+ <artifactId>protobuf-maven-plugin</artifactId>
|
|
|
|
+ <version>0.6.1</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <!--
|
|
|
|
+ <protocExecutable>/usr/local/bin/protoc</protocExecutable>
|
|
|
|
+ -->
|
|
|
|
+ <clearOutputDirectory>false</clearOutputDirectory>
|
|
|
|
+ <protoSourceRoot>${project.basedir}/src/main/proto</protoSourceRoot>
|
|
|
|
+ <outputDirectory>${project.basedir}/src/main/java</outputDirectory>
|
|
|
|
+ </configuration>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>compile</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
|
|
+ </plugin>
|
|
</plugins>
|
|
</plugins>
|
|
</build>
|
|
</build>
|
|
|
|
|