53 lines
1.1 KiB
Groovy
53 lines
1.1 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id "io.freefair.lombok" version "8.0.1"
|
|
id "com.github.node-gradle.node" version "7.0.2"
|
|
id "run.halo.plugin.devtools" version "0.1.1"
|
|
}
|
|
|
|
group 'run.halo.search.widget'
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://s01.oss.sonatype.org/content/repositories/releases' }
|
|
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
|
|
maven { url 'https://repo.spring.io/milestone' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation platform('run.halo.tools.platform:plugin:2.20.11')
|
|
compileOnly 'run.halo.app:api'
|
|
|
|
testImplementation 'run.halo.app:api'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
node {
|
|
nodeProjectDir = file("${project.projectDir}")
|
|
}
|
|
|
|
tasks.register('buildFrontend', PnpmTask) {
|
|
args = ['build']
|
|
dependsOn('installDepsForUI')
|
|
}
|
|
|
|
tasks.register('installDepsForUI', PnpmTask) {
|
|
args = ['install']
|
|
}
|
|
|
|
build {
|
|
// build frontend before build
|
|
tasks.named('compileJava').configure {
|
|
dependsOn('buildFrontend')
|
|
}
|
|
}
|
|
|
|
halo {
|
|
version = "2.21"
|
|
}
|