• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'java'
2
3version = '2.1.0'
4
5jar {
6    baseName = 'nanohttpd'
7}
8
9repositories {
10    mavenCentral()
11}
12
13dependencies {
14    testCompile group: 'junit', name: 'junit', version: '4.8.2'
15    testCompile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.2.5'
16    testCompile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.2.5'
17}
18
19