This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a commit to branch 1.0.0-bugfix in repository https://gitbox.apache.org/repos/asf/pinot.git
commit daee0efa7cb5edf2c87fa24a901982ae92b148b3 Author: Xiang Fu <xiangfu.1...@gmail.com> AuthorDate: Sat Sep 16 20:28:47 2023 -0700 1.0.0-bugfix for pinot-java-client and pinot-jdbc-client --- pinot-clients/pinot-java-client/pom.xml | 29 ++++++++++- pinot-clients/pinot-jdbc-client/pom.xml | 86 ++++++++++++++++++++++++++++++++- 2 files changed, 112 insertions(+), 3 deletions(-) diff --git a/pinot-clients/pinot-java-client/pom.xml b/pinot-clients/pinot-java-client/pom.xml index 573c58034e..5c003ca3ff 100644 --- a/pinot-clients/pinot-java-client/pom.xml +++ b/pinot-clients/pinot-java-client/pom.xml @@ -33,6 +33,7 @@ <properties> <pinot.root>${basedir}/../..</pinot.root> </properties> + <version>1.0.0-hotfix-SNAPSHOT</version> <build> <plugins> <plugin> @@ -61,10 +62,36 @@ <artifactId>testng</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.pinot</groupId> + <artifactId>pinot-spi</artifactId> + <version>1.0.0</version> + </dependency> + <dependency> + <groupId>org.apache.pinot</groupId> + <artifactId>pinot-segment-spi</artifactId> + <version>1.0.0</version> + <exclusions> + <exclusion> + <artifactId>pinot-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>org.apache.pinot</groupId> <artifactId>pinot-common</artifactId> - <version>${project.version}</version> + <version>1.0.0</version> + <exclusions> + <exclusion> + <artifactId>pinot-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + <exclusion> + <artifactId>pinot-segment-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> diff --git a/pinot-clients/pinot-jdbc-client/pom.xml b/pinot-clients/pinot-jdbc-client/pom.xml index d51df11fdf..2d468d8e52 100644 --- a/pinot-clients/pinot-jdbc-client/pom.xml +++ b/pinot-clients/pinot-jdbc-client/pom.xml @@ -33,6 +33,7 @@ <properties> <pinot.root>${basedir}/../..</pinot.root> </properties> + <version>1.0.0-hotfix-SNAPSHOT</version> <build> <plugins> <plugin> @@ -67,11 +68,93 @@ <groupId>org.apache.pinot</groupId> <artifactId>pinot-java-client</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <artifactId>pinot-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + <exclusion> + <artifactId>pinot-segment-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + <exclusion> + <artifactId>pinot-common</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.pinot</groupId> + <artifactId>pinot-spi</artifactId> + <version>1.0.0</version> + </dependency> + <dependency> + <groupId>org.apache.pinot</groupId> + <artifactId>pinot-segment-spi</artifactId> + <version>1.0.0</version> + <exclusions> + <exclusion> + <artifactId>pinot-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.pinot</groupId> + <artifactId>pinot-common</artifactId> + <version>1.0.0</version> + <exclusions> + <exclusion> + <artifactId>pinot-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + <exclusion> + <artifactId>pinot-segment-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.pinot</groupId> + <artifactId>pinot-segment-local</artifactId> + <version>1.0.0</version> + <exclusions> + <exclusion> + <artifactId>pinot-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + <exclusion> + <artifactId>pinot-segment-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + <exclusion> + <artifactId>pinot-common</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.pinot</groupId> <artifactId>pinot-core</artifactId> - <version>${project.version}</version> + <version>1.0.0</version> + <exclusions> + <exclusion> + <artifactId>pinot-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + <exclusion> + <artifactId>pinot-segment-spi</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + <exclusion> + <artifactId>pinot-common</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + <exclusion> + <artifactId>pinot-segment-local</artifactId> + <groupId>org.apache.pinot</groupId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.testng</groupId> @@ -99,7 +182,6 @@ <artifactId>jsr305</artifactId> </dependency> </dependencies> - <profiles> <profile> <id>build-shaded-jar</id> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org