73 lines
2.6 KiB
XML
73 lines
2.6 KiB
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<groupId>huangzj</groupId>
|
||
|
|
<artifactId>comm-framework</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<relativePath>../pom.xml</relativePath>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>ProtoBufModule</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<name>ProtoBufModule</name>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.protobuf</groupId>
|
||
|
|
<artifactId>protobuf-java</artifactId>
|
||
|
|
<version>${protobuf.version}</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<extensions>
|
||
|
|
<extension>
|
||
|
|
<groupId>kr.motd.maven</groupId>
|
||
|
|
<artifactId>os-maven-plugin</artifactId>
|
||
|
|
<version>1.7.1</version>
|
||
|
|
</extension>
|
||
|
|
</extensions>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.xolstice.maven.plugins</groupId>
|
||
|
|
<artifactId>protobuf-maven-plugin</artifactId>
|
||
|
|
<version>0.6.1</version>
|
||
|
|
<configuration>
|
||
|
|
<protoSourceRoot>${project.basedir}/src/main/protobuf</protoSourceRoot>
|
||
|
|
<protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
|
||
|
|
</configuration>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<goals>
|
||
|
|
<goal>compile</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||
|
|
<version>3.5.0</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>add-sources</id>
|
||
|
|
<phase>generate-sources</phase>
|
||
|
|
<goals>
|
||
|
|
<goal>add-source</goal>
|
||
|
|
</goals>
|
||
|
|
<configuration>
|
||
|
|
<sources>
|
||
|
|
<source>${project.build.directory}/generated-sources/protobuf/java</source>
|
||
|
|
</sources>
|
||
|
|
</configuration>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</project>
|