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 cf71bd86d1f7a7389edca2bef36690992e80d8bb 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 | 33 +++++++++++- pinot-clients/pinot-jdbc-client/pom.xml | 90 ++++++++++++++++++++++++++++++++- 2 files changed, 120 insertions(+), 3 deletions(-) diff --git a/pinot-clients/pinot-java-client/pom.xml b/pinot-clients/pinot-java-client/pom.xml index 573c58034e..f96dd2b8dc 100644 --- a/pinot-clients/pinot-java-client/pom.xml +++ b/pinot-clients/pinot-java-client/pom.xml @@ -33,6 +33,11 @@ <properties> <pinot.root>${basedir}/../..</pinot.root> </properties> + <version>1.0.0-hotfix-SNAPSHOT</version> + <scm> + <developerConnection>scm:git:g...@github.com:apache/pinot.git</developerConnection> + <tag>release-1.0.0-pinot-java-client-bugfix</tag> + </scm> <build> <plugins> <plugin> @@ -61,10 +66,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..af192cfa90 100644 --- a/pinot-clients/pinot-jdbc-client/pom.xml +++ b/pinot-clients/pinot-jdbc-client/pom.xml @@ -33,6 +33,11 @@ <properties> <pinot.root>${basedir}/../..</pinot.root> </properties> + <version>1.0.0-hotfix-SNAPSHOT</version> + <scm> + <developerConnection>scm:git:g...@github.com:apache/pinot.git</developerConnection> + <tag>release-1.0.0-pinot-jdbc-client-bugfix</tag> + </scm> <build> <plugins> <plugin> @@ -67,11 +72,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 +186,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