Skip to content

Commit

Permalink
DEV3 for BasePlugin 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Greazi-Times committed Feb 11, 2024
1 parent cb79130 commit e2ea90f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def artifactId = 'GradleBasePlugin'
// /---> Major Version - Increment this when you make a breaking change
// | /---> Minor Version - Increment this when you add a new feature
// | | /---> Patch Version - Increment this when you make a bug fix
def versionNum = '4.4.0-DEV2'
def versionNum = '4.4.0-DEV3'

group = groupId
version = versionNum
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ private void afterProjectEvaluation(Project project) {
Arrays.stream(relocations).map(entry -> entry.split("#"))
.forEach(fromTo -> getShadowJar(project).relocate(fromTo[0],
fromTo[1].replace("PROJECT_NAME", project.getName())));

Logger.warning(project.getName());
}

private ShadowJar getShadowJar(Project project) {
Expand Down

0 comments on commit e2ea90f

Please sign in to comment.