Start proper javadoc.
This commit is contained in:
parent
62cdea852c
commit
2d73d3ff07
15 changed files with 1119 additions and 18 deletions
|
|
@ -8,6 +8,9 @@ plugins {
|
|||
// Apply the java Plugin to add support for Java.
|
||||
id 'java'
|
||||
|
||||
// Git based versioning
|
||||
id 'pl.allegro.tech.build.axion-release'
|
||||
|
||||
// Apply eclipse plugin
|
||||
id 'eclipse'
|
||||
}
|
||||
|
|
@ -52,6 +55,17 @@ java {
|
|||
}
|
||||
}
|
||||
|
||||
scmVersion {
|
||||
versionIncrementer 'incrementMinor'
|
||||
tag {
|
||||
def shortened = project.name.startsWith(project.group + ".") ?
|
||||
project.name.substring(project.group.length() + 1) : project.name
|
||||
prefix = shortened.replace('.', '-') + "-"
|
||||
}
|
||||
}
|
||||
version = scmVersion.version
|
||||
ext.isSnapshot = version.endsWith('-SNAPSHOT')
|
||||
|
||||
eclipse {
|
||||
|
||||
project {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue