Skip to content

Commit 64c7d58

Browse files
Merge pull request #517 from veita/issue-476
Fix issue 476
2 parents 60171af + c305373 commit 64c7d58

3 files changed

Lines changed: 22 additions & 0 deletions

File tree

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ subprojects {
33
apply plugin: 'eclipse'
44

55
version = '1.0.0-SNAPSHOT'
6+
ext.specificationVersion = '0.7.0'
67

78
repositories {
89
mavenCentral()

richtextfx-demos/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ dependencies {
22
compile project(":richtextfx")
33
}
44

5+
jar {
6+
manifest {
7+
attributes(
8+
'Specification-Title': 'RichTextFX Demos',
9+
'Specification-Version': project.specificationVersion,
10+
'Implementation-Title': 'RichTextFX Demos',
11+
'Implementation-Version': project.version)
12+
}
13+
}
14+
515
task fatJar(type: Jar, dependsOn: classes) {
616
appendix = 'fat'
717
from sourceSets.main.output

richtextfx/build.gradle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,17 @@ dependencies {
3737
integrationTestCompile "org.testfx:openjfx-monocle:8u76-b04"
3838
}
3939

40+
41+
jar {
42+
manifest {
43+
attributes(
44+
'Specification-Title': 'RichTextFX',
45+
'Specification-Version': project.specificationVersion,
46+
'Implementation-Title': 'RichTextFX',
47+
'Implementation-Version': project.version)
48+
}
49+
}
50+
4051
javadoc {
4152
// ignore missing Javadoc comments or tags
4253
options.addStringOption('Xdoclint:all,-missing', '-quiet')

0 commit comments

Comments
 (0)