Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ subprojects {
apply plugin: 'eclipse'

version = '1.0.0-SNAPSHOT'
ext.specificationVersion = '0.7.0'

repositories {
mavenCentral()
Expand Down
10 changes: 10 additions & 0 deletions richtextfx-demos/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ dependencies {
compile project(":richtextfx")
}

jar {
manifest {
attributes(
'Specification-Title': 'RichTextFX Demos',
'Specification-Version': project.specificationVersion,
'Implementation-Title': 'RichTextFX Demos',
'Implementation-Version': project.version)
}
}

task fatJar(type: Jar, dependsOn: classes) {
appendix = 'fat'
from sourceSets.main.output
Expand Down
11 changes: 11 additions & 0 deletions richtextfx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,17 @@ dependencies {
integrationTestCompile "org.testfx:openjfx-monocle:8u76-b04"
}


jar {
manifest {
attributes(
'Specification-Title': 'RichTextFX',
'Specification-Version': project.specificationVersion,
'Implementation-Title': 'RichTextFX',
'Implementation-Version': project.version)
}
}

javadoc {
// ignore missing Javadoc comments or tags
options.addStringOption('Xdoclint:all,-missing', '-quiet')
Expand Down