-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade ktlint-maven-plugin to 3.0.0 (bumps ktlint from 0.39.0 to 1.0…
….0 (#96) * Upgrade ktlint-maven-plugin to 3.0.0 (bumps ktlint from 0.39.0 to 1.0.0) Improved ktlint handling: - runs at `verify` phase (instead of compile) - at default, only performs `check` - format can be run with `mvn ktlint:format@ktlint-format` - want to skip ktlint (and other quality steps)?: use `-Dquality.skip` * Apply ktlint needed changes Happy ktlint, happy flock? --------- Co-authored-by: Julius van Dis <[email protected]> Co-authored-by: Willem Veelenturf <[email protected]>
- Loading branch information
1 parent
9013ddb
commit 4a11c1c
Showing
198 changed files
with
3,175 additions
and
2,297 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--add-opens java.base/java.lang=ALL-UNNAMED |
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 |
---|---|---|
|
@@ -13,21 +13,21 @@ import org.springframework.stereotype.Component | |
@Import( | ||
UserLoadData::class, | ||
MemberLoadData::class, | ||
WorkspaceLoadData::class | ||
WorkspaceLoadData::class, | ||
) | ||
class ApplicationData( | ||
userAuthorityService: UserAuthorityService, | ||
userAccountService: UserAccountService, | ||
userLoadData: UserLoadData, | ||
memberLoadData: MemberLoadData, | ||
workspaceLoadData: WorkspaceLoadData | ||
workspaceLoadData: WorkspaceLoadData, | ||
) { | ||
|
||
init { | ||
val all = userAuthorityService | ||
.allAuthorities() | ||
.map { it.toName() } | ||
.toSet() | ||
val all = | ||
userAuthorityService | ||
.allAuthorities() | ||
.map { it.toName() } | ||
.toSet() | ||
userAccountService | ||
.createUserAccountPassword(UserAccountPasswordForm(name = "Test", email = "[email protected]", password = "test", authorities = all)) | ||
userLoadData.load(10) | ||
|
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
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
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
3 changes: 1 addition & 2 deletions
3
eco-application/eco-application-multi_tenant/src/main/kotlin/configuration/WebMvcConfig.kt
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
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
Oops, something went wrong.