diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2015-06-07 00:50:45 +0200 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2015-06-07 00:50:45 +0200 |
commit | bc8bf89edc3e24a756c1c9628087a5ae6f5af80a (patch) | |
tree | e6861d07d09e839f3222ca862747da165addc746 /pom.xml | |
parent | 8a17a2f6d77cb6bd3e5629d3944b30f449cb1237 (diff) | |
download | influxdb-tools-bc8bf89edc3e24a756c1c9628087a5ae6f5af80a.tar.gz influxdb-tools-bc8bf89edc3e24a756c1c9628087a5ae6f5af80a.zip |
first request worked. no result transformation yet
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 35 |
1 files changed, 31 insertions, 4 deletions
@@ -4,9 +4,9 @@ <groupId>org.xapek</groupId> <artifactId>influxdb-tools</artifactId> <version>0.0.1-SNAPSHOT</version> - <inceptionYear>2008</inceptionYear> <properties> - <scala.version>2.11.6</scala.version> + <scala.version>2.11</scala.version> + <scala.version.exact>2.11.6</scala.version.exact> </properties> <repositories> @@ -39,11 +39,11 @@ <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> - <version>${scala.version}</version> + <version>${scala.version.exact}</version> </dependency> <dependency> <groupId>com.typesafe.akka</groupId> - <artifactId>akka-actor_2.11</artifactId> + <artifactId>akka-actor_${scala.version}</artifactId> <version>2.3.9</version> </dependency> <dependency> @@ -58,6 +58,33 @@ <version>1.2.5</version> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.5</version> + </dependency> + <dependency> + <groupId>org.json4s</groupId> + <artifactId>json4s-jackson_${scala.version}</artifactId> + <version>3.2.11</version> + </dependency> + <dependency> + <groupId>org.json4s</groupId> + <artifactId>json4s-native_${scala.version}</artifactId> + <version>3.2.11</version> + </dependency> + + <dependency> + <groupId>com.typesafe.scala-logging</groupId> + <artifactId>scala-logging_${scala.version}</artifactId> + <version>3.1.0</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-simple</artifactId> + <version>1.7.7</version> + </dependency> </dependencies> <build> |