-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5863c60
commit 17402f0
Showing
6 changed files
with
63 additions
and
17 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
9 changes: 9 additions & 0 deletions
9
src/main/java/com/garethahealy/githubstats/ReflectionConfiguration.java
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,9 @@ | ||
package com.garethahealy.githubstats; | ||
|
||
import io.quarkus.runtime.annotations.RegisterForReflection; | ||
import org.apache.directory.api.ldap.codec.standalone.StandaloneLdapApiService; | ||
import org.apache.mina.transport.socket.nio.NioProcessor; | ||
|
||
@RegisterForReflection(targets = {StandaloneLdapApiService.class, NioProcessor.class}) | ||
public class ReflectionConfiguration { | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/garethahealy/githubstats/model/MembersInfo.java
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,9 @@ | ||
package com.garethahealy.githubstats.model; | ||
|
||
public class MembersInfo { | ||
public enum Headers { | ||
Timestamp, | ||
EmailAddress, | ||
WhatIsYourGitHubUsername | ||
} | ||
} |
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,11 @@ | ||
[ | ||
{ | ||
"name" : "com.github.benmanes.caffeine.cache.PSAMS", | ||
"allDeclaredConstructors" : true, | ||
"allPublicConstructors" : true, | ||
"allDeclaredMethods" : true, | ||
"allPublicMethods" : true, | ||
"allDeclaredFields" : true, | ||
"allPublicFields" : true | ||
} | ||
] |