Skip to content

Commit

Permalink
Merge pull request #4762 from pascalgrimaud/fix-native-build-related-…
Browse files Browse the repository at this point in the history
…to-sb3

Fix native build related to sb3
  • Loading branch information
pascalgrimaud authored Dec 16, 2022
2 parents 375c2ce + 5bd61b3 commit 3029e88
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import org.eclipse.jgit.api.*;
import org.eclipse.jgit.internal.*;
import org.eclipse.jgit.lib.*;
import org.eclipse.jgit.util.sha1.SHA1;
import org.springframework.aot.hint.*;
import tech.jhipster.lite.common.domain.*;

Expand All @@ -24,6 +25,7 @@ public void registerHints(RuntimeHints hints, ClassLoader classLoader) {
.registerType(MergeCommand.FastForwardMode.class, MemberCategory.values())
.registerType(MergeCommand.FastForwardMode.Merge.class, MemberCategory.values())
.registerType(JGitText.class, MemberCategory.values())
.registerType(SHA1.Sha1Implementation.class, MemberCategory.values())
.registerType(CoreConfig.AutoCRLF.class, MemberCategory.values())
.registerType(CoreConfig.CheckStat.class, MemberCategory.values())
.registerType(CoreConfig.EOL.class, MemberCategory.values())
Expand Down

0 comments on commit 3029e88

Please sign in to comment.