我有一个KotlinJs项目,我使用官方kotlin2js gradle来构建,没有问题。
如何设置输出文件夹,目前,子项目的构建将导致TASK [slack : debug]
***********************************************************
ok: [localhost] => {
"msg": "message: `SANDPIT` started ELMS and LACM MapGuide\nFYI <@U12345DK> <@U12345TT>"
}
位于子项目文件夹内,如何将其设置到其他地方?我试过了:
- name: Send message via Slack
slack:
token: 'valid token'
color: 'valid color'
msg: '{{ message }}'
link_names: 1
# problems with notifications should not fail the pipeline
ignore_errors: yes
和
build
没有运气。
我想要的是无论有多少子项目,输出文件夹应该在sourceSets {
main {
kotlin.outputDir = new File(‘./out/‘)
}
}
和sourceSets {
main.kotlin.outputDir = new File(‘./out/’)
}
之类的路径中,而不是在他们自己的文件夹中。怎么做?
答案 0 :(得分:0)
目前,它是通过任务配置完成的,即设置其sphinx
:
kotlinOptions.outputFile
教程中简要提到:Getting Started with Kotlin and JavaScript with Gradle