19 使用Gradle搭建SSM项目
创建SSM项目
plugins { id 'java' id 'war' }repositories { mavenLocal() mavenCentral() }dependencies { testImplementation platform('org.junit:junit-bom:5.9.1') testImplementation 'org.junit.jupiter:junit-jupiter' ... }
最后更新于
plugins {
id 'java'
id 'war'
}repositories {
mavenLocal()
mavenCentral()
}dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
...
}最后更新于