Skip to content

Commit

Permalink
Merge pull request #778 from tianlu-root/master
Browse files Browse the repository at this point in the history
feat: update version to 1.0.0-beta.1
  • Loading branch information
scottsut authored Feb 15, 2022
2 parents cfabb78 + 399f5ec commit a84e726
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 29 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>datart-parent</artifactId>
<groupId>datart</groupId>
<version>1.0.0-beta.0</version>
<version>1.0.0-beta.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion data-providers/file-data-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>datart-parent</artifactId>
<groupId>datart</groupId>
<version>1.0.0-beta.0</version>
<version>1.0.0-beta.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion data-providers/http-data-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>datart-parent</artifactId>
<groupId>datart</groupId>
<version>1.0.0-beta.0</version>
<version>1.0.0-beta.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion data-providers/jdbc-data-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>datart-parent</artifactId>
<groupId>datart</groupId>
<version>1.0.0-beta.0</version>
<version>1.0.0-beta.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion data-providers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>datart-parent</artifactId>
<groupId>datart</groupId>
<version>1.0.0-beta.0</version>
<version>1.0.0-beta.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<groupId>datart</groupId>
<artifactId>datart-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.0-beta.0</version>
<version>1.0.0-beta.1</version>

<dependencies>
<dependency>
Expand All @@ -33,6 +33,11 @@
<artifactId>commons-lang3</artifactId>
<version>3.11</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>datart-parent</artifactId>
<groupId>datart</groupId>
<version>1.0.0-beta.0</version>
<version>1.0.0-beta.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
31 changes: 9 additions & 22 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>datart-parent</artifactId>
<groupId>datart</groupId>
<version>1.0.0-beta.0</version>
<version>1.0.0-beta.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -160,19 +160,6 @@
</exclusions>
</dependency>


<dependency>
<groupId>ru.yandex.clickhouse</groupId>
<artifactId>clickhouse-jdbc</artifactId>
<version>0.3.1</version>
</dependency>

<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<!-- <version>19.12.0.0</version>-->
</dependency>

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
Expand All @@ -185,14 +172,15 @@
<scope>test</scope>
</dependency>

<!-- <dependency>-->
<!-- <groupId>com.cloudera.impala</groupId>-->
<!-- <artifactId>ImpalaJDBC41</artifactId>-->
<!-- <version>2.6.4</version>-->
<!-- </dependency>-->

</dependencies>

<repositories>
<repository>
<id>elastic.co</id>
<url>https://artifacts.elastic.co/maven</url>
</repository>
</repositories>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -286,7 +274,7 @@
<executions>
<execution>
<id>copy-resource</id>
<phase>prepare-package</phase>
<phase>compile</phase>
<goals>
<goal>copy-resources</goal>
</goals>
Expand Down Expand Up @@ -320,7 +308,6 @@
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down

0 comments on commit a84e726

Please sign in to comment.