mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
Fix build
This commit is contained in:
parent
4d1eadf712
commit
749f3e706e
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,8 @@ def dev = tasks.register('createDevOutput', Copy) {
|
||||||
dependsOn jar
|
dependsOn jar
|
||||||
mustRunAfter jar
|
mustRunAfter jar
|
||||||
|
|
||||||
if (project.allExtensions.contains(project)) {
|
// Project equality does no longer work in gradle 8.10
|
||||||
|
if (project.allExtensions.stream().map(p -> p.toString()).toList().contains(project.toString())) {
|
||||||
var source = "${project.jar.destinationDirectory.get()}"
|
var source = "${project.jar.destinationDirectory.get()}"
|
||||||
from source
|
from source
|
||||||
into "${project.rootDir}/app/build/ext_dev/$project.name"
|
into "${project.rootDir}/app/build/ext_dev/$project.name"
|
||||||
|
|
Loading…
Reference in a new issue