Skip to content

Commit

Permalink
test: gh publish
Browse files Browse the repository at this point in the history
  • Loading branch information
BFergerson committed Aug 9, 2022
1 parent 376584f commit f77abb3
Showing 1 changed file with 21 additions and 19 deletions.
40 changes: 21 additions & 19 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,27 @@ subprojects {
maven(url = "https://pkg.sourceplus.plus/sourceplusplus/interface-booster-ui")
}

apply(plugin = "app.cash.licensee")
configure<app.cash.licensee.LicenseeExtension> {
ignoreDependencies("plus.sourceplus", "protocol")
ignoreDependencies("plus.sourceplus", "protocol-jvm")
ignoreDependencies("plus.sourceplus.interface", "interface-booster-ui")
allow("Apache-2.0")
allow("MIT")
allow("EPL-1.0")
allow("LGPL-2.1-only")
allowUrl("https://raw.githubusercontent.com/apollographql/apollo-kotlin/main/LICENSE") //MIT
allowUrl("https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html") //LGPL 2.1
allowUrl("https://www.bouncycastle.org/licence.html") //MIT
allowUrl("https://api.github.com/licenses/apache-2.0") //Apache 2.0
allowUrl("http://www.jcraft.com/jsch/LICENSE.txt") //BSD-style
allowUrl("http://www.jcraft.com/jzlib/LICENSE.txt") //BSD-style
allowUrl("http://jgrapht.org/LGPL.html") //LGPL 2.1
allowUrl("http://www.eclipse.org/legal/epl-v20.html") //EPL 2.0
allowDependency("net.jcip", "jcip-annotations", "1.0") {
because("Creative Commons")
if (!this.toString().contains("commander")) {
apply(plugin = "app.cash.licensee")
configure<app.cash.licensee.LicenseeExtension> {
ignoreDependencies("plus.sourceplus", "protocol")
ignoreDependencies("plus.sourceplus", "protocol-jvm")
ignoreDependencies("plus.sourceplus.interface", "interface-booster-ui")
allow("Apache-2.0")
allow("MIT")
allow("EPL-1.0")
allow("LGPL-2.1-only")
allowUrl("https://raw.githubusercontent.com/apollographql/apollo-kotlin/main/LICENSE") //MIT
allowUrl("https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html") //LGPL 2.1
allowUrl("https://www.bouncycastle.org/licence.html") //MIT
allowUrl("https://api.github.com/licenses/apache-2.0") //Apache 2.0
allowUrl("http://www.jcraft.com/jsch/LICENSE.txt") //BSD-style
allowUrl("http://www.jcraft.com/jzlib/LICENSE.txt") //BSD-style
allowUrl("http://jgrapht.org/LGPL.html") //LGPL 2.1
allowUrl("http://www.eclipse.org/legal/epl-v20.html") //EPL 2.0
allowDependency("net.jcip", "jcip-annotations", "1.0") {
because("Creative Commons")
}
}
}

Expand Down

0 comments on commit f77abb3

Please sign in to comment.