-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update versions * remove ccv1 plugin * fix spotless importorder diffplug/spotless#522 (comment) * typo * adapt to changed @input handling of Gradle 8 https://docs.gradle.org/8.0.1/userguide/validation_problems.html#incorrect_use_of_input_annotation * use variable * bump versions * kotlin script transition WIP * kotlin script and updates * use jvm-test-suite plugin * update java version * extract commonTest to test-utils subproject * update cleanGlob * minor updates * fix deprecations and other warings * cleanup code * cleanup code * refactor mpern.sap.commerce.build.util.Extension #44 * update CHANGELOG * split into subprojects * fix reuse compliance * fix GH actions * try toolchain * disalbe SAP vendor in toolchain * fix GH actions part 2 * fix paths to test results * fix backwards compat * misc improvements * update build * whups * misc code cleanup
- Loading branch information
Showing
159 changed files
with
1,046 additions
and
1,948 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.gradle | ||
.idea | ||
/build | ||
/out | ||
/bin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
plugins { | ||
id("mpern.commons") | ||
id("mpern.plugin.basics") | ||
} | ||
|
||
dependencies { | ||
implementation(project(":plugin-commons")) | ||
} | ||
|
||
gradlePlugin { | ||
|
||
plugins { | ||
create("hybrisPlugin") { | ||
id = "sap.commerce.build" | ||
implementationClass = "mpern.sap.commerce.build.HybrisPlugin" | ||
|
||
displayName = "SAP Commerce Bootstrap & Build Plugin" | ||
description = """Manage the whole development lifecycle of your SAP Commerce Project with Gradle""" | ||
tags = setOf( | ||
"sap commerce", | ||
"sap hybris commerce", | ||
"hybris", | ||
"sap", | ||
"commerce", | ||
"bootstrap", | ||
"build", | ||
) | ||
} | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.