Skip to content

Commit

Permalink
chore: do not publish new lightning modules for now
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Sep 21, 2023
1 parent 703a946 commit 6f24202
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -359,10 +359,13 @@ configure(subprojects.findAll { project -> project.subprojects.isEmpty() &&
apply from: "${project.rootDir}/proto.gradle"
}

// enable publishing for all subproject except for "example applications"
// enable publishing for all subprojects except for some not intended to be or not ready yet
// (e.g. "example applications" or modules still in beta)
configure(subprojects.findAll { project -> project.subprojects.isEmpty() &&
!project.pluginManager.hasPlugin('org.springframework.boot') &&
project.name.indexOf('-example-application') < 0 }) {
project.name.indexOf('-example-application') < 0 &&
!project.name.startsWith('lightning-commons-') &&
!project.name.startsWith('lightning-regtest-') }) {
apply from: "${project.rootDir}/publish.gradle"
}

Expand Down

0 comments on commit 6f24202

Please sign in to comment.