1
0
Fork 0
mirror of https://bitbucket.org/akapribot/owm-japis.git synced 2025-04-24 23:07:12 -07:00

v2.5.0.3 - Lots of new features and changes. It's exciting. :)

This commit is contained in:
Ashutosh Kumar Singh 2014-12-28 15:31:23 +05:30
parent a3156175a3
commit a573686f24
143 changed files with 9372 additions and 26935 deletions

23
build.gradle Normal file
View file

@ -0,0 +1,23 @@
apply plugin: 'java'
apply plugin: 'maven-publish'
sourceCompatibility = 1.5
group = 'net.aksingh.owmjapis'
version = '2.5.0.3'
repositories {
mavenCentral()
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.+'
}