Skip to content

Commit b3c37f1

Browse files
author
Dongwei
committed
[release] version v3.1.0
1 parent cabd662 commit b3c37f1

File tree

8 files changed

+288
-6
lines changed

8 files changed

+288
-6
lines changed

contrib/openblas

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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/maven-v4_0_0.xsd">
3+
<parent>
4+
<artifactId>Dingo-Java-SDK</artifactId>
5+
<groupId>io.dingodb</groupId>
6+
<version>3.0.0</version>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>dingo-grpc-tools</artifactId>
10+
<name>dingo-grpc-tools</name>
11+
<build>
12+
<plugins>
13+
<plugin>
14+
<artifactId>maven-compiler-plugin</artifactId>
15+
<version>${maven.version}</version>
16+
<configuration>
17+
<source>${target.java.version}</source>
18+
<target>${target.java.version}</target>
19+
<proc>none</proc>
20+
<annotationProcessors>
21+
<annotationProcessor>io.dingodb.grpc.RpcMethodAnnotationProcessor</annotationProcessor>
22+
</annotationProcessors>
23+
</configuration>
24+
</plugin>
25+
<plugin>
26+
<artifactId>maven-gpg-plugin</artifactId>
27+
<version>3.2.8</version>
28+
<executions>
29+
<execution>
30+
<phase>verify</phase>
31+
<goals>
32+
<goal>sign</goal>
33+
</goals>
34+
</execution>
35+
</executions>
36+
<configuration>
37+
<gpgArguments>
38+
<arg>--pinentry-mode</arg>
39+
<arg>loopback</arg>
40+
</gpgArguments>
41+
</configuration>
42+
</plugin>
43+
<plugin>
44+
<artifactId>maven-javadoc-plugin</artifactId>
45+
<version>3.3.1</version>
46+
<executions>
47+
<execution>
48+
<id>generate-javadoc</id>
49+
<goals>
50+
<goal>jar</goal>
51+
</goals>
52+
</execution>
53+
</executions>
54+
</plugin>
55+
</plugins>
56+
</build>
57+
<properties>
58+
<maven.compiler.target>${target.java.version}</maven.compiler.target>
59+
<maven.compiler.source>${target.java.version}</maven.compiler.source>
60+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
61+
</properties>
62+
</project>

java/dingo-grpc-tools/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>Dingo-Java-SDK</artifactId>
77
<groupId>io.dingodb</groupId>
8-
<version>4.0.0-SNAPSHOT</version>
8+
<version>3.1.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<name>dingo-grpc-tools</name>
Lines changed: 220 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,220 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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/maven-v4_0_0.xsd">
3+
<parent>
4+
<artifactId>Dingo-Java-SDK</artifactId>
5+
<groupId>io.dingodb</groupId>
6+
<version>3.0.0</version>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>dingo-sdk</artifactId>
10+
<name>DingoSDK- SDK For DingoDB</name>
11+
<build>
12+
<extensions>
13+
<extension>
14+
<groupId>kr.motd.maven</groupId>
15+
<artifactId>os-maven-plugin</artifactId>
16+
</extension>
17+
</extensions>
18+
<resources>
19+
<resource>
20+
<directory>${project.basedir}</directory>
21+
<includes>
22+
<include>lib/*.jar</include>
23+
</includes>
24+
</resource>
25+
</resources>
26+
<plugins>
27+
<plugin>
28+
<artifactId>maven-compiler-plugin</artifactId>
29+
<version>${maven.version}</version>
30+
<configuration>
31+
<source>${target.java.version}</source>
32+
<target>${target.java.version}</target>
33+
<generatedSourcesDirectory>${project.build.directory}/dingo-generated-sources/</generatedSourcesDirectory>
34+
</configuration>
35+
</plugin>
36+
<plugin>
37+
<groupId>org.xolstice.maven.plugins</groupId>
38+
<artifactId>protobuf-maven-plugin</artifactId>
39+
<version>0.6.1</version>
40+
<executions>
41+
<execution>
42+
<goals>
43+
<goal>compile</goal>
44+
<goal>compile-custom</goal>
45+
</goals>
46+
</execution>
47+
</executions>
48+
<configuration>
49+
<protocArtifact>com.google.protobuf:protoc:${protostuff.java.version}:exe:${os.detected.classifier}</protocArtifact>
50+
<pluginId>grpc-java</pluginId>
51+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
52+
<protoSourceRoot>${basedir}/../../dingo-store-proto/proto</protoSourceRoot>
53+
<outputDirectory>${basedir}/target/grpc-generated-sources</outputDirectory>
54+
<clearOutputDirectory>false</clearOutputDirectory>
55+
</configuration>
56+
</plugin>
57+
<plugin>
58+
<artifactId>maven-javadoc-plugin</artifactId>
59+
<version>3.3.1</version>
60+
<executions>
61+
<execution>
62+
<id>generate-javadoc</id>
63+
<goals>
64+
<goal>jar</goal>
65+
</goals>
66+
</execution>
67+
</executions>
68+
</plugin>
69+
<plugin>
70+
<artifactId>maven-shade-plugin</artifactId>
71+
<version>3.6.0</version>
72+
<executions>
73+
<execution>
74+
<phase>package</phase>
75+
<goals>
76+
<goal>shade</goal>
77+
</goals>
78+
<configuration>
79+
<shadedArtifactAttached>true</shadedArtifactAttached>
80+
<shadedClassifierName>all</shadedClassifierName>
81+
<filters>
82+
<filter>
83+
<artifact>*:*</artifact>
84+
<excludes>
85+
<exclude>META-INF/*.SF</exclude>
86+
<exclude>META-INF/*.DSA</exclude>
87+
<exclude>META-INF/*.RSA</exclude>
88+
</excludes>
89+
</filter>
90+
</filters>
91+
</configuration>
92+
</execution>
93+
</executions>
94+
</plugin>
95+
<plugin>
96+
<groupId>pl.project13.maven</groupId>
97+
<artifactId>git-commit-id-plugin</artifactId>
98+
<version>4.9.10</version>
99+
<executions>
100+
<execution>
101+
<goals>
102+
<goal>revision</goal>
103+
</goals>
104+
</execution>
105+
</executions>
106+
<configuration>
107+
<useNativeGit>true</useNativeGit>
108+
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
109+
<generateGitPropertiesFile>true</generateGitPropertiesFile>
110+
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
111+
</configuration>
112+
</plugin>
113+
<plugin>
114+
<artifactId>maven-gpg-plugin</artifactId>
115+
<version>3.2.8</version>
116+
<executions>
117+
<execution>
118+
<phase>verify</phase>
119+
<goals>
120+
<goal>sign</goal>
121+
</goals>
122+
</execution>
123+
</executions>
124+
<configuration>
125+
<gpgArguments>
126+
<arg>--pinentry-mode</arg>
127+
<arg>loopback</arg>
128+
</gpgArguments>
129+
</configuration>
130+
</plugin>
131+
</plugins>
132+
</build>
133+
<dependencies>
134+
<dependency>
135+
<groupId>org.junit.jupiter</groupId>
136+
<artifactId>junit-jupiter-api</artifactId>
137+
<version>5.8.1</version>
138+
<scope>test</scope>
139+
<exclusions>
140+
<exclusion>
141+
<artifactId>opentest4j</artifactId>
142+
<groupId>org.opentest4j</groupId>
143+
</exclusion>
144+
<exclusion>
145+
<artifactId>junit-platform-commons</artifactId>
146+
<groupId>org.junit.platform</groupId>
147+
</exclusion>
148+
<exclusion>
149+
<artifactId>apiguardian-api</artifactId>
150+
<groupId>org.apiguardian</groupId>
151+
</exclusion>
152+
</exclusions>
153+
</dependency>
154+
<dependency>
155+
<groupId>org.junit.jupiter</groupId>
156+
<artifactId>junit-jupiter-engine</artifactId>
157+
<version>5.8.1</version>
158+
<scope>test</scope>
159+
<exclusions>
160+
<exclusion>
161+
<artifactId>junit-platform-engine</artifactId>
162+
<groupId>org.junit.platform</groupId>
163+
</exclusion>
164+
<exclusion>
165+
<artifactId>apiguardian-api</artifactId>
166+
<groupId>org.apiguardian</groupId>
167+
</exclusion>
168+
</exclusions>
169+
</dependency>
170+
<dependency>
171+
<groupId>org.openjdk.jmh</groupId>
172+
<artifactId>jmh-core</artifactId>
173+
<version>1.37</version>
174+
<scope>test</scope>
175+
<exclusions>
176+
<exclusion>
177+
<artifactId>jopt-simple</artifactId>
178+
<groupId>net.sf.jopt-simple</groupId>
179+
</exclusion>
180+
<exclusion>
181+
<artifactId>commons-math3</artifactId>
182+
<groupId>org.apache.commons</groupId>
183+
</exclusion>
184+
</exclusions>
185+
</dependency>
186+
<dependency>
187+
<groupId>org.openjdk.jmh</groupId>
188+
<artifactId>jmh-generator-annprocess</artifactId>
189+
<version>1.37</version>
190+
<scope>test</scope>
191+
</dependency>
192+
<dependency>
193+
<groupId>io.dingodb</groupId>
194+
<artifactId>dingo-grpc-tools</artifactId>
195+
<version>3.0.0</version>
196+
<scope>provided</scope>
197+
</dependency>
198+
<dependency>
199+
<groupId>org.slf4j</groupId>
200+
<artifactId>slf4j-simple</artifactId>
201+
<version>1.7.36</version>
202+
<scope>test</scope>
203+
</dependency>
204+
<dependency>
205+
<groupId>junit</groupId>
206+
<artifactId>junit</artifactId>
207+
<version>4.13.1</version>
208+
<scope>test</scope>
209+
<exclusions>
210+
<exclusion>
211+
<artifactId>hamcrest-core</artifactId>
212+
<groupId>org.hamcrest</groupId>
213+
</exclusion>
214+
</exclusions>
215+
</dependency>
216+
</dependencies>
217+
<properties>
218+
<maven.deploy.skip>false</maven.deploy.skip>
219+
</properties>
220+
</project>

java/dingo-sdk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dingodb</groupId>
88
<artifactId>Dingo-Java-SDK</artifactId>
9-
<version>4.0.0-SNAPSHOT</version>
9+
<version>3.1.0</version>
1010
</parent>
1111
<artifactId>dingo-sdk</artifactId>
1212
<modelVersion>4.0.0</modelVersion>

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.dingodb</groupId>
88
<artifactId>Dingo-Java-SDK</artifactId>
9-
<version>4.0.0-SNAPSHOT</version>
9+
<version>3.1.0</version>
1010
<name>Dingo-Java-SDK</name>
1111
<description>dingo-sdk</description>
1212
<url>https://github.com/dingodb/dingo-store.git</url>

0 commit comments

Comments
 (0)