|
15 | 15 | <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"> |
16 | 16 | <modelVersion>4.0.0</modelVersion> |
17 | 17 |
|
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> |
24 | 19 | <artifactId>amazon-timestream-jdbc</artifactId> |
| 20 | + <version>1.0.1</version> |
25 | 21 | <packaging>jar</packaging> |
26 | 22 |
|
27 | 23 | <distributionManagement> |
|
36 | 32 | </distributionManagement> |
37 | 33 |
|
38 | 34 | <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 | + |
39 | 40 | <!-- Version properties are written out to be picked up by the driver. --> |
40 | 41 | <driver.major.version>0</driver.major.version> |
41 | 42 | <driver.minor.version>1</driver.minor.version> |
|
44 | 45 |
|
45 | 46 | <!-- Set the timezone information for unit tests. --> |
46 | 47 | <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> |
47 | 57 | </properties> |
48 | 58 |
|
49 | 59 | <dependencies> |
50 | 60 | <dependency> |
51 | 61 | <groupId>com.amazonaws</groupId> |
52 | 62 | <artifactId>aws-java-sdk-core</artifactId> |
| 63 | + <version>${awssdk.version}</version> |
53 | 64 | </dependency> |
54 | 65 | <dependency> |
55 | 66 | <groupId>com.amazonaws</groupId> |
56 | 67 | <artifactId>aws-java-sdk-sts</artifactId> |
| 68 | + <version>${awssdk.version}</version> |
57 | 69 | </dependency> |
58 | 70 | <dependency> |
59 | 71 | <groupId>com.amazonaws</groupId> |
60 | 72 | <artifactId>aws-java-sdk-timestreamquery</artifactId> |
| 73 | + <version>${timestream.version}</version> |
61 | 74 | </dependency> |
62 | 75 | <dependency> |
63 | 76 | <groupId>com.google.guava</groupId> |
64 | 77 | <artifactId>guava</artifactId> |
| 78 | + <version>${guava.version}</version> |
65 | 79 | </dependency> |
66 | 80 | <dependency> |
67 | 81 | <groupId>org.slf4j</groupId> |
68 | 82 | <artifactId>jul-to-slf4j</artifactId> |
| 83 | + <version>${slf4j.version}</version> |
69 | 84 | </dependency> |
70 | 85 | <dependency> |
71 | 86 | <groupId>org.jsoup</groupId> |
72 | 87 | <artifactId>jsoup</artifactId> |
| 88 | + <version>${jsoup.version}</version> |
73 | 89 | </dependency> |
74 | 90 | <dependency> |
75 | 91 | <groupId>org.junit.jupiter</groupId> |
76 | 92 | <artifactId>junit-jupiter</artifactId> |
| 93 | + <version>${junit.jupiter.version}</version> |
77 | 94 | <scope>test</scope> |
78 | 95 | </dependency> |
79 | 96 | <dependency> |
|
0 commit comments