|
14 | 14 | <name>influxdb java bindings</name> |
15 | 15 | <description>Java API to access the InfluxDB REST API</description> |
16 | 16 | <url>http://www.influxdb.org</url> |
| 17 | + |
| 18 | + <prerequisites> |
| 19 | + <maven>3.2.1</maven> |
| 20 | + </prerequisites> |
| 21 | + |
17 | 22 | <licenses> |
18 | 23 | <license> |
19 | 24 | <name>The MIT License (MIT)</name> |
|
51 | 56 | <groupId>org.apache.maven.plugins</groupId> |
52 | 57 | <artifactId>maven-compiler-plugin</artifactId> |
53 | 58 | <configuration> |
54 | | - <source>1.6</source> |
55 | | - <target>1.6</target> |
| 59 | + <source>1.7</source> |
| 60 | + <target>1.7</target> |
56 | 61 | </configuration> |
57 | 62 | </plugin> |
58 | 63 | </plugins> |
|
62 | 67 | <dependency> |
63 | 68 | <groupId>org.testng</groupId> |
64 | 69 | <artifactId>testng</artifactId> |
65 | | - <version>6.8.13</version> |
| 70 | + <version>6.9.4</version> |
66 | 71 | <scope>test</scope> |
67 | 72 | </dependency> |
68 | 73 | <dependency> |
69 | 74 | <groupId>com.github.docker-java</groupId> |
70 | 75 | <artifactId>docker-java</artifactId> |
71 | | - <version>0.10.0</version> |
| 76 | + <version>1.3.0</version> |
72 | 77 | <scope>test</scope> |
73 | 78 | </dependency> |
74 | 79 | <dependency> |
|
79 | 84 | <dependency> |
80 | 85 | <groupId>com.squareup.retrofit</groupId> |
81 | 86 | <artifactId>retrofit</artifactId> |
82 | | - <version>1.8.0</version> |
| 87 | + <version>1.9.0</version> |
83 | 88 | </dependency> |
84 | 89 | <!-- If we use okhttp instead of java urlconnection we achieve server failover of the influxdb server address resolves to all influxdb server ips.--> |
85 | 90 | <dependency> |
86 | 91 | <groupId>com.squareup.okhttp</groupId> |
87 | 92 | <artifactId>okhttp</artifactId> |
88 | | - <version>2.2.0</version> |
89 | | - </dependency> |
90 | | - <dependency> |
91 | | - <groupId>com.squareup.okhttp</groupId> |
92 | | - <artifactId>okhttp-urlconnection</artifactId> |
93 | | - <version>2.2.0</version> |
| 93 | + <version>2.4.0</version> |
94 | 94 | </dependency> |
95 | 95 | </dependencies> |
96 | 96 | </project> |
0 commit comments