This is an automated email from the ASF dual-hosted git repository. snlee pushed a commit to branch release-0.8.0-rc in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/release-0.8.0-rc by this push: new 798190a Fix the shaded issue with Apache Pulsar 798190a is described below commit 798190accf9d7f0b0f2b8b90821547c0dbff9331 Author: Seunghyun Lee <sn...@linkedin.com> AuthorDate: Wed Jul 28 16:18:35 2021 -0700 Fix the shaded issue with Apache Pulsar As mentioned in #7221, Apache Pulsar plugin did not create the shaded jar. This PR addresses it. Moreover, we also fix the javadoc lint issue when building the apache release. --- .../pinot-stream-ingestion/pinot-pulsar/pom.xml | 44 ++++++++++++++-------- pom.xml | 4 +- 2 files changed, 31 insertions(+), 17 deletions(-) diff --git a/pinot-plugins/pinot-stream-ingestion/pinot-pulsar/pom.xml b/pinot-plugins/pinot-stream-ingestion/pinot-pulsar/pom.xml index 7e720c5..fd7128e 100644 --- a/pinot-plugins/pinot-stream-ingestion/pinot-pulsar/pom.xml +++ b/pinot-plugins/pinot-stream-ingestion/pinot-pulsar/pom.xml @@ -22,19 +22,20 @@ <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> <parent> <artifactId>pinot-stream-ingestion</artifactId> <groupId>org.apache.pinot</groupId> <version>0.8.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> - <modelVersion>4.0.0</modelVersion> + <artifactId>pinot-pulsar</artifactId> <name>Pinot Pulsar</name> <url>https://pinot.apache.org/</url> - <artifactId>pinot-pulsar</artifactId> <properties> + <phase.prop>package</phase.prop> <pinot.root>${basedir}/../../..</pinot.root> <pulsar.version>2.7.2</pulsar.version> <jetty-server.version>9.4.39.v20210325</jetty-server.version> @@ -90,6 +91,14 @@ <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </exclusion> + <exclusion> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk15on</artifactId> + </exclusion> + <exclusion> + <groupId>org.bouncycastle</groupId> + <artifactId>bcprov-ext-jdk15on</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -132,10 +141,6 @@ <artifactId>grpc-context</artifactId> </exclusion> <exclusion> - <groupId>org.bouncycastle</groupId> - <artifactId>bcpkix-jdk15on</artifactId> - </exclusion> - <exclusion> <groupId>io.netty</groupId> <artifactId>netty-tcnative-boringssl-static</artifactId> </exclusion> @@ -220,12 +225,16 @@ <artifactId>netty-transport-native-unix-common</artifactId> </exclusion> <exclusion> + <groupId>jakarta.ws.rs</groupId> + <artifactId>jakarta.ws.rs-api</artifactId> + </exclusion> + <exclusion> <groupId>org.bouncycastle</groupId> - <artifactId>bcprov-ext-jdk15on</artifactId> + <artifactId>bcpkix-jdk15on</artifactId> </exclusion> <exclusion> - <groupId>jakarta.ws.rs</groupId> - <artifactId>jakarta.ws.rs-api</artifactId> + <groupId>org.bouncycastle</groupId> + <artifactId>bcprov-ext-jdk15on</artifactId> </exclusion> </exclusions> </dependency> @@ -275,11 +284,6 @@ <version>${grpc-context.version}</version> </dependency> <dependency> - <groupId>org.bouncycastle</groupId> - <artifactId>bcpkix-jdk15on</artifactId> - <version>${bouncycastle.version}</version> - </dependency> - <dependency> <groupId>io.netty</groupId> <artifactId>netty-tcnative-boringssl-static</artifactId> <version>${netty-tcnative.version}</version> @@ -366,7 +370,17 @@ </dependency> <dependency> <groupId>org.bouncycastle</groupId> - <artifactId>bcprov-ext-jdk15on</artifactId> + <artifactId>bcpkix-jdk15to18</artifactId> + <version>${bouncycastle.version}</version> + </dependency> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcprov-ext-jdk15to18</artifactId> + <version>${bouncycastle.version}</version> + </dependency> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcprov-jdk15to18</artifactId> <version>${bouncycastle.version}</version> </dependency> <dependency> diff --git a/pom.xml b/pom.xml index aa92fd1..87446a6 100644 --- a/pom.xml +++ b/pom.xml @@ -1355,10 +1355,10 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>2.10.1</version> + <version>3.2.0</version> <configuration> <!-- Remove this after fixing all javadoc warnings --> - <additionalparam>-Xdoclint:none</additionalparam> + <doclint>none</doclint> </configuration> </plugin> <plugin> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org