Skip to content

Commit a84e726

Browse files
authored
Merge pull request #778 from tianlu-root/master
feat: update version to 1.0.0-beta.1
2 parents cfabb78 + 399f5ec commit a84e726

File tree

8 files changed

+21
-29
lines changed

8 files changed

+21
-29
lines changed

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>datart-parent</artifactId>
77
<groupId>datart</groupId>
8-
<version>1.0.0-beta.0</version>
8+
<version>1.0.0-beta.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

data-providers/file-data-provider/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>datart-parent</artifactId>
77
<groupId>datart</groupId>
8-
<version>1.0.0-beta.0</version>
8+
<version>1.0.0-beta.1</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

data-providers/http-data-provider/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>datart-parent</artifactId>
77
<groupId>datart</groupId>
8-
<version>1.0.0-beta.0</version>
8+
<version>1.0.0-beta.1</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

data-providers/jdbc-data-provider/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>datart-parent</artifactId>
77
<groupId>datart</groupId>
8-
<version>1.0.0-beta.0</version>
8+
<version>1.0.0-beta.1</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

data-providers/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>datart-parent</artifactId>
77
<groupId>datart</groupId>
8-
<version>1.0.0-beta.0</version>
8+
<version>1.0.0-beta.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<groupId>datart</groupId>
2020
<artifactId>datart-parent</artifactId>
2121
<packaging>pom</packaging>
22-
<version>1.0.0-beta.0</version>
22+
<version>1.0.0-beta.1</version>
2323

2424
<dependencies>
2525
<dependency>
@@ -33,6 +33,11 @@
3333
<artifactId>commons-lang3</artifactId>
3434
<version>3.11</version>
3535
</dependency>
36+
<dependency>
37+
<groupId>org.springframework.boot</groupId>
38+
<artifactId>spring-boot-starter-test</artifactId>
39+
<scope>test</scope>
40+
</dependency>
3641
</dependencies>
3742

3843
<modules>

security/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>datart-parent</artifactId>
77
<groupId>datart</groupId>
8-
<version>1.0.0-beta.0</version>
8+
<version>1.0.0-beta.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

server/pom.xml

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>datart-parent</artifactId>
77
<groupId>datart</groupId>
8-
<version>1.0.0-beta.0</version>
8+
<version>1.0.0-beta.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -160,19 +160,6 @@
160160
</exclusions>
161161
</dependency>
162162

163-
164-
<dependency>
165-
<groupId>ru.yandex.clickhouse</groupId>
166-
<artifactId>clickhouse-jdbc</artifactId>
167-
<version>0.3.1</version>
168-
</dependency>
169-
170-
<dependency>
171-
<groupId>com.oracle.database.jdbc</groupId>
172-
<artifactId>ojdbc8</artifactId>
173-
<!-- <version>19.12.0.0</version>-->
174-
</dependency>
175-
176163
<dependency>
177164
<groupId>io.springfox</groupId>
178165
<artifactId>springfox-swagger-ui</artifactId>
@@ -185,14 +172,15 @@
185172
<scope>test</scope>
186173
</dependency>
187174

188-
<!-- <dependency>-->
189-
<!-- <groupId>com.cloudera.impala</groupId>-->
190-
<!-- <artifactId>ImpalaJDBC41</artifactId>-->
191-
<!-- <version>2.6.4</version>-->
192-
<!-- </dependency>-->
193-
194175
</dependencies>
195176

177+
<repositories>
178+
<repository>
179+
<id>elastic.co</id>
180+
<url>https://artifacts.elastic.co/maven</url>
181+
</repository>
182+
</repositories>
183+
196184
<build>
197185
<plugins>
198186
<plugin>
@@ -286,7 +274,7 @@
286274
<executions>
287275
<execution>
288276
<id>copy-resource</id>
289-
<phase>prepare-package</phase>
277+
<phase>compile</phase>
290278
<goals>
291279
<goal>copy-resources</goal>
292280
</goals>
@@ -320,7 +308,6 @@
320308
</execution>
321309
</executions>
322310
</plugin>
323-
324311
</plugins>
325312
</build>
326313

0 commit comments

Comments
 (0)