Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add javafx javadoc option to build script and update gitignore with b…
…uild dir
  • Loading branch information
p-dukke committed Apr 12, 2018
1 parent 0d084e7 commit 3f0143d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -40,3 +40,6 @@ lib/
# Gradle
.gradle/
.nb-gradle/

# Gradle output dir
build/
4 changes: 4 additions & 0 deletions build.gradle
Expand Up @@ -25,6 +25,10 @@ task javadocJar(type: Jar) {
from javadoc
}

javadoc {
options.addStringOption('javafx', '-quiet')
}

task sourceJar(type: Jar) {
from sourceSets.main.allJava
classifier "sources"
Expand Down
4 changes: 1 addition & 3 deletions src/main/java/com/pixelduke/control/ParallaxListView.java
Expand Up @@ -139,9 +139,7 @@ public final ObjectProperty<FocusModel<T>> focusModelProperty() {
}





// *********** New API (not present on ListView) ********************


/**
Expand Down

0 comments on commit 3f0143d

Please sign in to comment.