Skip to content

Use top-level directory gradle and delete from third_party #8397

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,3 @@ lib/kotlin*
.gradle
/build/
gradle-app.setting
gradle/wrapper/gradle-wrapper.jar
4 changes: 1 addition & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ tasks {
}

// A task to print the classpath used for compiling an IntelliJ plugin
// Run with `./third_party/gradlew printCompileClasspath --no-configuration-cache `
// Run with `./gradlew printCompileClasspath --no-configuration-cache `
tasks.register("printCompileClasspath") {
doLast {
println("--- Begin Compile Classpath ---")
Expand Down Expand Up @@ -296,8 +296,6 @@ val writeLicenseKey = tasks.register("writeLicenseKey") {
if (readFile.isFile) {
val licenseKey = readFile.readText(Charsets.UTF_8)
licenseFile.writeText("jxbrowser.license.key=$licenseKey")
} else {
println("$readFile is not a file")
}
}
}
Expand Down
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 0 additions & 5 deletions third_party/gradle-LICENSE.txt

This file was deleted.

Binary file removed third_party/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 0 additions & 5 deletions third_party/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

240 changes: 0 additions & 240 deletions third_party/gradlew

This file was deleted.

91 changes: 0 additions & 91 deletions third_party/gradlew.bat

This file was deleted.

2 changes: 1 addition & 1 deletion tool/kokoro/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ setup

echo "kokoro build start"

./third_party/gradlew buildPlugin
./gradlew buildPlugin

echo "kokoro build finished"
2 changes: 1 addition & 1 deletion tool/kokoro/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ setup

echo "kokoro build start"

./third_party/gradlew buildPlugin -Pdev-version=88.0
./gradlew buildPlugin -Pdev-version=88.0

echo "kokoro build finished"

Expand Down
2 changes: 1 addition & 1 deletion tool/kokoro/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ setup() {
export NO_FS_ROOTS_ACCESS_CHECK=true

(cd tool/plugin; echo "dart pub get `pwd`"; dart pub get --no-precompile)
./third_party/gradlew --version
./gradlew --version
}
Loading