Home | History | Annotate | Download | only in core
      1 apply plugin: 'java'
      2 
      3 version = '2.1.0'
      4 
      5 jar {
      6     baseName = 'nanohttpd'
      7 }
      8 
      9 repositories {
     10     mavenCentral()
     11 }
     12 
     13 dependencies {
     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