Skip to content

Commit 9405105

Browse files
committed
Ant compatibility
1 parent ac7307c commit 9405105

4 files changed

Lines changed: 8 additions & 14 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,5 @@ java/build/
110110
/java/lsp/build
111111
/.kotlin/sessions
112112
/core/examples/build
113+
114+
.build/

.idea/externalDependencies.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@ plugins {
77

88
alias(libs.plugins.compose.compiler) apply false
99
alias(libs.plugins.jetbrainsCompose) apply false
10-
}
10+
}
11+
12+
// Set the build directory to not /build to prevent accidental deletion through the clean action
13+
// Can be deleted after the migration to Gradle is complete
14+
layout.buildDirectory = file(".build")

settings.gradle.kts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,4 @@ include(
1111
"java:libraries:pdf",
1212
"java:libraries:serial",
1313
"java:libraries:svg",
14-
)
15-
16-
buildscript {
17-
repositories {
18-
mavenCentral()
19-
}
20-
}
14+
)

0 commit comments

Comments
 (0)