9 lines
165 B
Bash
Executable File
9 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
|
|
pushd ..
|
|
./gradlew dependencies --configuration runtimeClasspath > test/gradle.deps
|
|
./mvnw dependency:tree > test/maven.deps
|
|
popd
|
|
|