Skip to content

Commit

Permalink
Open modules
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Nov 8, 2020
1 parent 1b1dd8f commit 3501bb9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
* @author Andres Almiray
*/
module org.kordamp.bootstrapfx.core {
open module org.kordamp.bootstrapfx.core {
exports org.kordamp.bootstrapfx;
exports org.kordamp.bootstrapfx.scene.layout;

Expand Down
28 changes: 13 additions & 15 deletions subprojects/sampler/sampler.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,23 @@ plugins {
id 'application'
}

mainClassName = 'org.kordamp.bootstrapfx.sampler/org.kordamp.bootstrapfx.sampler.Sampler'

dependencies {
implementation project(':bootstrapfx-core')
implementation 'org.fxmisc.richtext:richtextfx:0.10.5'
implementation 'commons-io:commons-io:2.8.0'

implementation "org.openjfx:javafx-base:${javafxVersion}:${platform}"
implementation "org.openjfx:javafx-graphics:${javafxVersion}:${platform}"
implementation "org.openjfx:javafx-controls:${javafxVersion}:${platform}"
implementation "org.openjfx:javafx-fxml:${javafxVersion}:${platform}"
}

config {
artifacts {
source { enabled = false }
}
publishing { enabled = false }
bintray { enabled = false }
}

application {
mainClassName = 'org.kordamp.bootstrapfx.sampler/org.kordamp.bootstrapfx.sampler.Sampler'
}

dependencies {
api project(':bootstrapfx-core')
api 'org.fxmisc.richtext:richtextfx:0.10.5'
api 'commons-io:commons-io:2.8.0'

api "org.openjfx:javafx-base:${javafxVersion}:${platform}"
api "org.openjfx:javafx-graphics:${javafxVersion}:${platform}"
api "org.openjfx:javafx-controls:${javafxVersion}:${platform}"
api "org.openjfx:javafx-fxml:${javafxVersion}:${platform}"
}
2 changes: 1 addition & 1 deletion subprojects/sampler/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* THE SOFTWARE.
*/

module org.kordamp.bootstrapfx.sampler {
open module org.kordamp.bootstrapfx.sampler {
exports org.kordamp.bootstrapfx.sampler;
requires org.kordamp.bootstrapfx.core;
requires javafx.base;
Expand Down

0 comments on commit 3501bb9

Please sign in to comment.