Upgrade Maven plugins to enable builds on Java 11.

Closes gh-302.
This commit is contained in:
Mark Paluch
2018-09-07 11:00:50 +02:00
parent 4f6cac44b2
commit 4b5e73d760
4 changed files with 20 additions and 15 deletions

View File

@@ -20,6 +20,7 @@ import java.time.Instant;
import java.util.Collections;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.Value;
import org.junit.Before;
@@ -162,5 +163,9 @@ public class VaultWrappingTemplateIntegrationTests extends IntegrationTestSuppor
@EqualsAndHashCode
static class Secret {
final String key;
Secret(@JsonProperty("key") String key) {
this.key = key;
}
}
}