fixed line endings, added getDirectoryContents license info

This commit is contained in:
Robinson 2021-07-14 13:47:49 +02:00
parent 33e381aa29
commit dde5e4a827
1 changed files with 8 additions and 2 deletions

View File

@ -26,12 +26,12 @@ gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show th
gradle.startParameter.warningMode = WarningMode.All
plugins {
id("com.dorkbox.GradleUtils") version "2.8"
id("com.dorkbox.GradleUtils") version "2.8.1"
id("com.dorkbox.Licensing") version "2.7"
id("com.dorkbox.VersionUpdate") version "2.3"
id("com.dorkbox.GradlePublish") version "1.11"
kotlin("jvm") version "1.5.0"
kotlin("jvm") version "1.5.20"
}
object Extras {
@ -165,6 +165,12 @@ licensing {
author("Square, Inc")
url("https://github.com/square/retrofit")
}
extra("Resource Listing", License.APACHE_2) {
copyright(2017)
description("Listing the contents of a resource directory")
author("Greg Briggs")
url("http://www.uofr.net/~greg/java/get-resource-listing.html")
}
}
}