mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-02-06 10:54:33 +00:00
* [Backend] Java Client SDK #4961 [WIP] * [Backend] Java Client SDK #4961 ..Fix the OpenMetadata[lowercase d] added version plugin * [Backend] Java Client SDK #4961 ..Add Version utils to core and Using Custom Interceptor to modify request body as per OMD supported JSON Schema * [Backend] Using exclude nulls to modify request * [Backend] Google SSO changes tested and fixed for Service Credentials * [Backend] Okta SSO added
22 lines
771 B
XML
22 lines
771 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>catalog</artifactId>
|
|
<groupId>org.openmetadata</groupId>
|
|
<version>0.11.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>openmetadata-clients</artifactId>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>openmetadata-java-client</module>
|
|
</modules>
|
|
<properties>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
</properties>
|
|
</project>
|