File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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()
Original file line number Diff line number Diff 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+
515task fatJar (type : Jar , dependsOn : classes) {
616 appendix = ' fat'
717 from sourceSets. main. output
Original file line number Diff line number Diff 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+
4051javadoc {
4152 // ignore missing Javadoc comments or tags
4253 options. addStringOption(' Xdoclint:all,-missing' , ' -quiet' )
You can’t perform that action at this time.
0 commit comments