Skip to content

Commit

Permalink
feat: support gradle plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
heowc committed May 27, 2024
1 parent fffe7fe commit 67d661f
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions it/gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
plugins {
id 'java'
id 'dev.heowc.heo' version '0.0.2-SNAPSHOT'
//if (project.hasProperty('localPlugin')) {
//
//}


buildscript {
repositories {
mavenLocal()
}
dependencies {
classpath "dev.heowc.heo:heo-plugin:0.0.2-SNAPSHOT"
}
}

apply plugin: 'java'
apply plugin: 'dev.heowc.heo'

heo {
directoryPath = "${rootDir}/heo-core"
prefixPackage = "dev.heowc.heo.core"
}
}

0 comments on commit 67d661f

Please sign in to comment.