HBASE-17052 compile-protobuf profile does not compile protobufs in some modules anymore
This commit is contained in:
parent
fb4c50966e
commit
07757501d7
|
@ -199,7 +199,9 @@
|
||||||
<goal>compile</goal>
|
<goal>compile</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<protoSourceRoot>${basedir}/src/main/protobuf/,${basedir}/../hbase-protocol/src/main/protobuf</protoSourceRoot>
|
<additionalProtoPathElements>
|
||||||
|
<additionalProtoPathElement>${basedir}/../hbase-protocol/src/main/protobuf</additionalProtoPathElement>
|
||||||
|
</additionalProtoPathElements>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
|
|
@ -128,6 +128,10 @@
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-server</artifactId>
|
<artifactId>hbase-server</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.hbase</groupId>
|
||||||
|
<artifactId>hbase-endpoint</artifactId>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-thrift</artifactId>
|
<artifactId>hbase-thrift</artifactId>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -228,6 +228,7 @@
|
||||||
<configuration>
|
<configuration>
|
||||||
<protocArtifact>com.google.protobuf:protoc:${internal.protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
|
<protocArtifact>com.google.protobuf:protoc:${internal.protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
|
||||||
<outputDirectory>${sources.dir}</outputDirectory>
|
<outputDirectory>${sources.dir}</outputDirectory>
|
||||||
|
<attachProtoSources>false</attachProtoSources>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
|
|
@ -246,7 +246,9 @@
|
||||||
<goal>compile</goal>
|
<goal>compile</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<protoSourceRoot>${basedir}/src/main/protobuf/,${basedir}/../hbase-protocol/src/main/protobuf</protoSourceRoot>
|
<additionalProtoPathElements>
|
||||||
|
<additionalProtoPathElement>${basedir}/../hbase-protocol/src/main/protobuf</additionalProtoPathElement>
|
||||||
|
</additionalProtoPathElements>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
|
1
pom.xml
1
pom.xml
|
@ -826,6 +826,7 @@
|
||||||
<protoSourceRoot>${basedir}/src/main/protobuf/</protoSourceRoot>
|
<protoSourceRoot>${basedir}/src/main/protobuf/</protoSourceRoot>
|
||||||
<outputDirectory>${basedir}/src/main/java/</outputDirectory>
|
<outputDirectory>${basedir}/src/main/java/</outputDirectory>
|
||||||
<clearOutputDirectory>false</clearOutputDirectory>
|
<clearOutputDirectory>false</clearOutputDirectory>
|
||||||
|
<checkStaleness>true</checkStaleness>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|
Loading…
Reference in New Issue