Implemented Entries manager.
Implemented Messages manager. Enabled caching of the currency exchange rates. Moved commands, utils, etc. to separate classes. Added more weather data.
This commit is contained in:
parent
153363a320
commit
e31a22af11
28 changed files with 3778 additions and 2198 deletions
|
@ -61,13 +61,12 @@ compileJava {
|
|||
}
|
||||
|
||||
}
|
||||
//options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
|
||||
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
|
||||
}
|
||||
|
||||
jar {
|
||||
manifest.attributes(
|
||||
'Main-Class': mainClassName,
|
||||
'Class-Path': '. ./lib/' + configurations.compile.collect { it.getName() }.join(' ./lib/'))
|
||||
manifest.attributes('Main-Class': mainClassName,
|
||||
'Class-Path': '. ./lib/' + configurations.compile.collect { it.getName() }.join(' ./lib/'))
|
||||
|
||||
version = null
|
||||
}
|
||||
|
@ -106,5 +105,4 @@ task deploy(dependsOn: ['build', 'copyToDeploy', 'copyToDeployLib']) {
|
|||
task release(dependsOn: ['deploy', 'wrapper']) {
|
||||
group = "Publishing"
|
||||
description = "Releases new version."
|
||||
isRelease = true
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue