eagler-teavm-fork/samples/hello/build.gradle.kts

45 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

import org.teavm.gradle.api.SourceFilePolicy
2019-01-24 05:28:30 -08:00
/*
2023-01-03 06:29:13 -08:00
* Copyright 2023 Alexey Andreev.
2019-01-24 05:28:30 -08:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2023-01-03 06:29:13 -08:00
plugins {
java
war
id("org.teavm")
}
2024-03-13 08:20:45 -07:00
configurations {
create("teavmCli")
create("teavmClasslib")
}
2023-01-03 06:29:13 -08:00
dependencies {
teavm(teavm.libs.jsoApis)
compileOnly("jakarta.servlet:jakarta.servlet-api:6.0.0")
2024-03-13 08:20:45 -07:00
"teavmCli"("org.teavm:teavm-cli:0.10.0-SNAPSHOT")
"teavmClasslib"("org.teavm:teavm-classlib:0.10.0-SNAPSHOT")
2023-01-03 06:29:13 -08:00
}
2019-01-24 05:28:30 -08:00
2023-01-03 06:29:13 -08:00
teavm.js {
addedToWebApp = true
mainClass = "org.teavm.samples.hello.Client"
sourceMap = true
2024-06-10 10:41:20 -07:00
debugInformation = true
sourceFilePolicy = SourceFilePolicy.LINK_LOCAL_FILES
2019-01-24 05:28:30 -08:00
}