新規プロジェクトでGradle→Kotlin(JVM)を選びました。
同様に作成してみました。わたしの動作環境はLinuxです。
Intellij IDEAを利用し、gradlew runを行おうとしています。
そもそも、新規プロジェクトを作っただけでは、runタスクは存在していません。プロジェクトに手を入れたのであれば、それらを提示しないと有効な回答は得られないとおもいます。
$ sh gradlew run
FAILURE: Build failed with an exception.
* What went wrong:
Task 'run' not found in root project 'untitled'.
* Try:
Run gradlew tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 1s
$ sh gradlew tasks --all | grep run
Tasks runnable from root project 'untitled'
tasks - Displays the tasks runnable from root project 'untitled'.
IntelliJ IDEA 2021.2.3 (Community Edition)
Build #IC-212.5457.46, built on October 12, 2021
Runtime version: 11.0.12+7-b1504.40 amd64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
Linux 4.19.0-18-amd64
GC: ParNew, ConcurrentMarkSweep
Memory: 947M
Cores: 4
Non-Bundled Plugins: intellij.haskell (1.0.0-beta88), org.jetbrains.plugins.hocon (2021.1.0), org.jetbrains.kotlin (212-1.5.31-release-546-IJ4638.7), com.thoughtworks.gauge (212.4746.52), PythonCore (212.5457.59), org.intellij.scala (2021.2.23)
Kotlin: 212-1.5.31-release-546-IJ4638.7
Current Desktop: X-Cinnamon
$ cat build.gradle
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.31'
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/05 02:08