Skip to content

Commit 18bfd23

Browse files
committed
First usable version which is able to write and query influxdb 0.9.0 > rc30, create/describe and delete databases is also possible. This is the first very rough version with a lot of changes comming, especially to BatchPoints and Point.
1 parent c08fd9a commit 18bfd23

23 files changed

+753
-2082
lines changed

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
FROM ubuntu
22
MAINTAINER Stefan Majer <stefan.majer [at] gmail.com>
33

4-
ADD http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb /influxdb_latest_amd64.deb
4+
ADD http://get.influxdb.org/influxdb_0.9.0-rc31_amd64.deb /influxdb_latest_amd64.deb
55
RUN dpkg -i /influxdb_latest_amd64.deb
66

7-
EXPOSE 8083 8086
7+
EXPOSE 8083 8086 4444
88

9-
CMD ["-config=/opt/influxdb/shared/config.toml", "-reset-root=true"]
10-
ENTRYPOINT ["/usr/bin/influxdb"]
9+
CMD ["/opt/influxdb/influxd"]

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
<name>influxdb java bindings</name>
1515
<description>Java API to access the InfluxDB REST API</description>
1616
<url>http://www.influxdb.org</url>
17+
18+
<prerequisites>
19+
<maven>3.2.1</maven>
20+
</prerequisites>
21+
1722
<licenses>
1823
<license>
1924
<name>The MIT License (MIT)</name>
@@ -51,8 +56,8 @@
5156
<groupId>org.apache.maven.plugins</groupId>
5257
<artifactId>maven-compiler-plugin</artifactId>
5358
<configuration>
54-
<source>1.6</source>
55-
<target>1.6</target>
59+
<source>1.7</source>
60+
<target>1.7</target>
5661
</configuration>
5762
</plugin>
5863
</plugins>
@@ -62,13 +67,13 @@
6267
<dependency>
6368
<groupId>org.testng</groupId>
6469
<artifactId>testng</artifactId>
65-
<version>6.8.13</version>
70+
<version>6.9.4</version>
6671
<scope>test</scope>
6772
</dependency>
6873
<dependency>
6974
<groupId>com.github.docker-java</groupId>
7075
<artifactId>docker-java</artifactId>
71-
<version>0.10.0</version>
76+
<version>1.3.0</version>
7277
<scope>test</scope>
7378
</dependency>
7479
<dependency>
@@ -79,18 +84,13 @@
7984
<dependency>
8085
<groupId>com.squareup.retrofit</groupId>
8186
<artifactId>retrofit</artifactId>
82-
<version>1.8.0</version>
87+
<version>1.9.0</version>
8388
</dependency>
8489
<!-- If we use okhttp instead of java urlconnection we achieve server failover of the influxdb server address resolves to all influxdb server ips.-->
8590
<dependency>
8691
<groupId>com.squareup.okhttp</groupId>
8792
<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>
9494
</dependency>
9595
</dependencies>
9696
</project>

0 commit comments

Comments
 (0)