-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spring-ified CLI #15
Spring-ified CLI #15
Conversation
implementation 'org.springframework.boot:spring-boot-starter' | ||
implementation group: 'io.airlift', name: 'units', version: airliftVersion | ||
implementation 'com.redis:lettucemod:3.5.1' | ||
implementation files("/Users/steve.lorello/projects/smart-cache/redis-smart-cache/core/redis-smart-cache-core/build/libs/redis-smart-cache-core-0.2.2-SNAPSHOT.jar") //TODO: replace with sensible version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jruaux - obviously this is pointing to a local jar at the moment (so I can get it to build at least) -when the core updates are made (or perhaps in anticipation of those from this PR) this needs to be updated to point to the appropriate version of core.
@@ -259,264 +256,4 @@ public void setUrl(String url) { | |||
} | |||
|
|||
} | |||
|
|||
public static class RulesetConfig { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RulesetConfig and RuleConfig needed to be split out to compensate for GraalVMs apparent inability to build reflection against methods of inner types
|
||
import java.util.Set; | ||
|
||
public class Query { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lifted this out into the core project
@@ -0,0 +1,240 @@ | |||
#!/bin/sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jruaux - should this have been ignored?
No description provided.