Skip to content

Commit baae313

Browse files
authored
Merge pull request #6 from awslabs/jdbc_pom
Failed to collect dependencies at software.amazon.timestream:amazon-t…
2 parents 2443285 + 224773a commit baae313

File tree

4 files changed

+27
-10
lines changed

4 files changed

+27
-10
lines changed

integrationtest/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1717
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1818
<modelVersion>4.0.0</modelVersion>
19-
<version>1.0.0</version>
19+
<version>1.0.1</version>
2020

2121
<parent>
2222
<groupId>software.amazon.timestream</groupId>
2323
<artifactId>timestream</artifactId>
24-
<version>1.0.0</version>
24+
<version>1.0.1</version>
2525
</parent>
2626

2727
<artifactId>integrationtest</artifactId>

jdbc/pom.xml

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,9 @@
1515
<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/xsd/maven-4.0.0.xsd">
1616
<modelVersion>4.0.0</modelVersion>
1717

18-
<parent>
19-
<groupId>software.amazon.timestream</groupId>
20-
<artifactId>timestream</artifactId>
21-
<version>1.0.0</version>
22-
</parent>
23-
18+
<groupId>software.amazon.timestream</groupId>
2419
<artifactId>amazon-timestream-jdbc</artifactId>
20+
<version>1.0.1</version>
2521
<packaging>jar</packaging>
2622

2723
<distributionManagement>
@@ -36,6 +32,11 @@
3632
</distributionManagement>
3733

3834
<properties>
35+
<!-- Optionally specify a compiler here, we chose Java 8 -->
36+
<maven.compiler.target>1.8</maven.compiler.target>
37+
<maven.compiler.source>1.8</maven.compiler.source>
38+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39+
3940
<!-- Version properties are written out to be picked up by the driver. -->
4041
<driver.major.version>0</driver.major.version>
4142
<driver.minor.version>1</driver.minor.version>
@@ -44,36 +45,52 @@
4445

4546
<!-- Set the timezone information for unit tests. -->
4647
<argLine>-Duser.timezone=Europe/Paris</argLine>
48+
49+
<!-- Dependency versions -->
50+
<awssdk.version>1.11.870</awssdk.version>
51+
<guava.version>28.0-jre</guava.version>
52+
<junit.jupiter.version>5.6.2</junit.jupiter.version>
53+
<jsoup.version>1.13.1</jsoup.version>
54+
<mockito.version>2.28.2</mockito.version>
55+
<slf4j.version>1.7.24</slf4j.version>
56+
<timestream.version>1.11.872</timestream.version>
4757
</properties>
4858

4959
<dependencies>
5060
<dependency>
5161
<groupId>com.amazonaws</groupId>
5262
<artifactId>aws-java-sdk-core</artifactId>
63+
<version>${awssdk.version}</version>
5364
</dependency>
5465
<dependency>
5566
<groupId>com.amazonaws</groupId>
5667
<artifactId>aws-java-sdk-sts</artifactId>
68+
<version>${awssdk.version}</version>
5769
</dependency>
5870
<dependency>
5971
<groupId>com.amazonaws</groupId>
6072
<artifactId>aws-java-sdk-timestreamquery</artifactId>
73+
<version>${timestream.version}</version>
6174
</dependency>
6275
<dependency>
6376
<groupId>com.google.guava</groupId>
6477
<artifactId>guava</artifactId>
78+
<version>${guava.version}</version>
6579
</dependency>
6680
<dependency>
6781
<groupId>org.slf4j</groupId>
6882
<artifactId>jul-to-slf4j</artifactId>
83+
<version>${slf4j.version}</version>
6984
</dependency>
7085
<dependency>
7186
<groupId>org.jsoup</groupId>
7287
<artifactId>jsoup</artifactId>
88+
<version>${jsoup.version}</version>
7389
</dependency>
7490
<dependency>
7591
<groupId>org.junit.jupiter</groupId>
7692
<artifactId>junit-jupiter</artifactId>
93+
<version>${junit.jupiter.version}</version>
7794
<scope>test</scope>
7895
</dependency>
7996
<dependency>

performancetest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>software.amazon.timestream</groupId>
2222
<artifactId>timestream</artifactId>
23-
<version>1.0.0</version>
23+
<version>1.0.1</version>
2424
</parent>
2525

2626
<artifactId>performancetest</artifactId>

pom.xml

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

1818
<groupId>software.amazon.timestream</groupId>
1919
<artifactId>timestream</artifactId>
20-
<version>1.0.0</version>
20+
<version>1.0.1</version>
2121
<packaging>pom</packaging>
2222

2323
<modules>

0 commit comments

Comments
 (0)