Skip to content

Commit

Permalink
initial start on a gradle build.
Browse files Browse the repository at this point in the history
  • Loading branch information
psh committed May 12, 2014
1 parent 711762a commit ab6feae
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ target
.idea
.classpath
.project
.gradle

# Vim Backup/Swap Files
*~
Expand Down
18 changes: 18 additions & 0 deletions core/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
apply plugin: 'java'

version = '2.1.0'

jar {
baseName = 'nanohttpd'
}

repositories {
mavenCentral()
}

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.8.2'
testCompile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.2.5'
testCompile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.2.5'
}

0 comments on commit ab6feae

Please sign in to comment.