diff options
Diffstat (limited to 'framework/src/onos/incubator/rpc-grpc')
-rw-r--r-- | framework/src/onos/incubator/rpc-grpc/pom.xml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/framework/src/onos/incubator/rpc-grpc/pom.xml b/framework/src/onos/incubator/rpc-grpc/pom.xml index f528ca53..367b50a2 100644 --- a/framework/src/onos/incubator/rpc-grpc/pom.xml +++ b/framework/src/onos/incubator/rpc-grpc/pom.xml @@ -122,6 +122,18 @@ </extensions> <plugins> + <!-- TODO This is included to suppress the generation of javadocs for + this package. There is a problem when we try to package the + auto-generated code's javadoc into a jar. --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <sourcepath>${basedir}/src/main/java/</sourcepath> + <excludePackageNames>org.onosproject.incubator.rpc.grpc</excludePackageNames> + </configuration> + </plugin> + <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> @@ -224,8 +236,7 @@ </configuration> </execution> </executions> - </plugin> - + </plugin> </plugins> </build> |