-
- Notifications
You must be signed in to change notification settings - Fork 967
Closed
Milestone
Description
Issue description
list:
- gorm-neo4j
This might be a starting point:
Lines 56 to 72 in 8497491
| public void processSelectedFeatures(FeatureContext featureContext) { | |
| int jdkVersion = featureContext.getJavaVersion().majorVersion(); | |
| if (jdkVersion >= 9) { | |
| Springloaded springloaded = this; | |
| featureContext.exclude(new FeaturePredicate() { | |
| @Override | |
| public boolean test(Feature feature) { | |
| return feature == springloaded; | |
| } | |
| @Override | |
| public Optional<String> getWarning() { | |
| return Optional.of("Springloaded was excluded because it does not support JDK " + jdkVersion); | |
| } | |
| }); | |
| } | |
| } |
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Done