diff options
author | Simon Rettberg | 2015-06-22 14:36:06 +0200 |
---|---|---|
committer | Simon Rettberg | 2015-06-22 14:36:06 +0200 |
commit | 81772ad293ed856186e0fbc7862fea3b3c3f5af4 (patch) | |
tree | c36f789652437077ffb9210bf867a338c71f8689 | |
parent | Add deploy section, change group id in case we start modifying (diff) | |
download | ecp-client-lean-81772ad293ed856186e0fbc7862fea3b3c3f5af4.tar.gz ecp-client-lean-81772ad293ed856186e0fbc7862fea3b3c3f5af4.tar.xz ecp-client-lean-81772ad293ed856186e0fbc7862fea3b3c3f5af4.zip |
Relax httpclient version requirement, set required java version to 1.7
-rw-r--r-- | pom.xml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -27,8 +27,8 @@ <artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
- <source>1.6</source>
- <target>1.6</target>
+ <source>1.7</source>
+ <target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
@@ -38,7 +38,7 @@ <dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
- <version>4.1</version>
+ <version>[4.1,4.2.99]</version>
</dependency>
</dependencies>
</project>
|