Ian Maxon has submitted this change and it was merged. Change subject: [NO ISSUE][*DB] Enable external library on Java 10 ......................................................................
[NO ISSUE][*DB] Enable external library on Java 10 Change-Id: Ic3ba3c5597a1353ac4d1c3f690d6d32bfd978033 Reviewed-on: https://asterix-gerrit.ics.uci.edu/2776 Reviewed-by: Ian Maxon <[email protected]> Tested-by: Ian Maxon <[email protected]> --- M asterixdb/asterix-external-data/pom.xml 1 file changed, 23 insertions(+), 0 deletions(-) Approvals: Ian Maxon: Looks good to me, approved; Verified diff --git a/asterixdb/asterix-external-data/pom.xml b/asterixdb/asterix-external-data/pom.xml index 964f7f9..1981c18 100644 --- a/asterixdb/asterix-external-data/pom.xml +++ b/asterixdb/asterix-external-data/pom.xml @@ -198,6 +198,17 @@ </lifecycleMappingMetadata> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <configuration> + <usedDependencies combine.children="append"> + <usedDependency>com.sun.xml.bind:jaxb-core</usedDependency> + <usedDependency>com.sun.xml.bind:jaxb-impl</usedDependency> + <usedDependency>com.sun.activation:javax.activation</usedDependency> + </usedDependencies> + </configuration> + </plugin> </plugins> </pluginManagement> </build> @@ -397,5 +408,17 @@ <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </dependency> + <dependency> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-core</artifactId> + </dependency> + <dependency> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-impl</artifactId> + </dependency> + <dependency> + <groupId>com.sun.activation</groupId> + <artifactId>javax.activation</artifactId> + </dependency> </dependencies> </project> -- To view, visit https://asterix-gerrit.ics.uci.edu/2776 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ic3ba3c5597a1353ac4d1c3f690d6d32bfd978033 Gerrit-PatchSet: 2 Gerrit-Project: asterixdb Gerrit-Branch: release-0.9.4-pre-rc Gerrit-Owner: Xikui Wang <[email protected]> Gerrit-Reviewer: Ian Maxon <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Michael Blow <[email protected]>
