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 28bf7ead4a8c93ef8eec97a14f0a3f50e76cea81 Author: Xiang Fu <[email protected]> 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..58d682c625 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:[email protected]:apache/pinot.git</developerConnection> + <tag>release-1.0.0-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..feaa18fcf5 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:[email protected]:apache/pinot.git</developerConnection> + <tag>release-1.0.0-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: [email protected] For additional commands, e-mail: [email protected]
