aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Hawke <paul.hawke@gmail.com>2013-09-04 21:01:44 -0700
committerPaul Hawke <paul.hawke@gmail.com>2013-09-04 21:01:44 -0700
commite313a7d67e8ba1f36e09d95f7ac48ce1f04e8571 (patch)
tree07615fe69a50aab25cdf71570c63aa084f40b6c6
parent5820f308631a825a05feddddd0aafb962f272b9b (diff)
parent79f7c96a8ad15f0928be085e54f948303275cffa (diff)
downloadnanohttpd-e313a7d67e8ba1f36e09d95f7ac48ce1f04e8571.tar.gz
Merge pull request #53 from digitalrounin/master
Moved httpclient and httpmime to test scope & tab clean up
-rw-r--r--.gitignore7
-rw-r--r--core/pom.xml14
2 files changed, 14 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore
index 3c05d3f..f46b4cf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,7 +4,12 @@ target
*.iml
*.class
-.swp
.idea
.classpath
.project
+
+# Vim Backup/Swap Files
+*~
+.swp
+.*.swp
+
diff --git a/core/pom.xml b/core/pom.xml
index e1eeb49..b2b9c06 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -18,14 +18,16 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.2.5</version>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>4.2.5</version>
+ <scope>test</scope>
</dependency>
<dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- <version>4.2.5</version>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpmime</artifactId>
+ <version>4.2.5</version>
+ <scope>test</scope>
</dependency>
</dependencies>