Skip to content

Commit

Permalink
- Subproject sources support.
Browse files Browse the repository at this point in the history
- Patch version bump.
  • Loading branch information
jjzazuet committed Aug 21, 2024
1 parent 59db598 commit b69ab51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bl-gradle-plugin/src/main/java/io/vacco/beleth/BlTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public BlTask() {
var jxt = prj.getExtensions().getByType(JavaPluginExtension.class);
var ssMain = jxt.getSourceSets().getByName("main");
var crdSrc = getCrdSourcesDir();
var k8sSrc = new File(prj.getRootDir(), "k8s");
var k8sSrc = new File(prj.getProjectDir(), "k8s");
ssMain.getJava().srcDir(k8sSrc);
getOutputs().dir(crdSrc);
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins { id("io.vacco.oss.gitflow") version "1.0.1" apply(false) }
subprojects {
apply(plugin = "io.vacco.oss.gitflow")
group = "io.vacco.beleth"
version = "0.2.4"
version = "0.2.5"

configure<io.vacco.oss.gitflow.GsPluginProfileExtension> {
sharedLibrary(true, false)
Expand Down

0 comments on commit b69ab51

Please sign in to comment.