mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
Also, fix incorrect assertion for composite tasks view: inherited tasks are not available for included builds GitOrigin-RevId: c0ae306ffa7805ce725716c005ce010c74bdc3d7
205 lines
4.4 KiB
Plaintext
205 lines
4.4 KiB
Plaintext
View root() {
|
|
adhoc() {
|
|
adhoc() {
|
|
Tasks() {
|
|
build setup() {
|
|
init()
|
|
wrapper()
|
|
}
|
|
help() {
|
|
buildEnvironment()
|
|
components()
|
|
dependencies()
|
|
dependencyInsight()
|
|
dependentComponents()
|
|
help()
|
|
model()
|
|
projects()
|
|
properties()
|
|
tasks()
|
|
}
|
|
}
|
|
}
|
|
my-app() {
|
|
Tasks() {
|
|
build() {
|
|
assemble()
|
|
build()
|
|
buildDependents()
|
|
buildNeeded()
|
|
classes()
|
|
clean()
|
|
jar()
|
|
testClasses()
|
|
}
|
|
build setup() {
|
|
init()
|
|
wrapper()
|
|
}
|
|
documentation() {
|
|
javadoc()
|
|
}
|
|
help() {
|
|
buildEnvironment()
|
|
components()
|
|
dependencies()
|
|
dependencyInsight()
|
|
dependentComponents()
|
|
help()
|
|
model()
|
|
projects()
|
|
properties()
|
|
tasks()
|
|
}
|
|
other() {
|
|
compileJava()
|
|
compileTestJava()
|
|
processResources()
|
|
processTestResources()
|
|
}
|
|
verification() {
|
|
check()
|
|
test()
|
|
}
|
|
}
|
|
Dependencies() {
|
|
compileClasspath() {
|
|
project number-utils()
|
|
project string-utils() {
|
|
org.apache.commons:commons-lang3:3.4()
|
|
}
|
|
}
|
|
runtimeClasspath() {
|
|
project number-utils()
|
|
project string-utils() {
|
|
org.apache.commons:commons-lang3:3.4()
|
|
}
|
|
}
|
|
testCompileClasspath() {
|
|
project number-utils()
|
|
project string-utils() {
|
|
org.apache.commons:commons-lang3:3.4()
|
|
}
|
|
}
|
|
testRuntimeClasspath() {
|
|
project number-utils()
|
|
project string-utils() {
|
|
org.apache.commons:commons-lang3:3.4()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
my-utils() {
|
|
Tasks() {
|
|
build setup() {
|
|
init()
|
|
wrapper()
|
|
}
|
|
help() {
|
|
buildEnvironment()
|
|
components()
|
|
dependencies()
|
|
dependencyInsight()
|
|
dependentComponents()
|
|
help()
|
|
model()
|
|
projects()
|
|
properties()
|
|
tasks()
|
|
}
|
|
}
|
|
number-utils() {
|
|
Tasks() {
|
|
build() {
|
|
assemble()
|
|
build()
|
|
buildDependents()
|
|
buildNeeded()
|
|
classes()
|
|
clean()
|
|
jar()
|
|
testClasses()
|
|
}
|
|
documentation() {
|
|
javadoc()
|
|
}
|
|
help() {
|
|
buildEnvironment()
|
|
components()
|
|
dependencies()
|
|
dependencyInsight()
|
|
dependentComponents()
|
|
help()
|
|
model()
|
|
projects()
|
|
properties()
|
|
tasks()
|
|
}
|
|
other() {
|
|
compileJava()
|
|
compileTestJava()
|
|
processResources()
|
|
processTestResources()
|
|
}
|
|
verification() {
|
|
check()
|
|
test()
|
|
}
|
|
}
|
|
}
|
|
string-utils() {
|
|
Tasks() {
|
|
build() {
|
|
assemble()
|
|
build()
|
|
buildDependents()
|
|
buildNeeded()
|
|
classes()
|
|
clean()
|
|
jar()
|
|
testClasses()
|
|
}
|
|
documentation() {
|
|
javadoc()
|
|
}
|
|
help() {
|
|
buildEnvironment()
|
|
components()
|
|
dependencies()
|
|
dependencyInsight()
|
|
dependentComponents()
|
|
help()
|
|
model()
|
|
projects()
|
|
properties()
|
|
tasks()
|
|
}
|
|
other() {
|
|
compileJava()
|
|
compileTestJava()
|
|
processResources()
|
|
processTestResources()
|
|
}
|
|
verification() {
|
|
check()
|
|
test()
|
|
}
|
|
}
|
|
Dependencies() {
|
|
compileClasspath() {
|
|
org.apache.commons:commons-lang3:3.4()
|
|
}
|
|
runtimeClasspath() {
|
|
org.apache.commons:commons-lang3:3.4()
|
|
}
|
|
testCompileClasspath() {
|
|
org.apache.commons:commons-lang3:3.4()
|
|
}
|
|
testRuntimeClasspath() {
|
|
org.apache.commons:commons-lang3:3.4()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |