### What changes were proposed in this pull request? 1. remove scala binary version from the openapi-client artifactId. 2. skip openapi-client doc compile, it was missed in https://github.com/apache/celeborn/pull/2641 ### Why are the changes needed? Because the openapi-client is a pure java module. ### Does this PR introduce _any_ user-facing change? No, it has not been released. ### How was this patch tested? GA. Closes #2861 from turboFei/remove_Scala. Authored-by: Wang, Fei <fwang12@ebay.com> Signed-off-by: mingji <fengmingxiao.fmx@alibaba-inc.com>
315 lines
14 KiB
XML
315 lines
14 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Licensed to the Apache Software Foundation (ASF) under one or more
|
|
~ contributor license agreements. See the NOTICE file distributed with
|
|
~ this work for additional information regarding copyright ownership.
|
|
~ The ASF licenses this file to You under the Apache License, Version 2.0
|
|
~ (the "License"); you may not use this file except in compliance with
|
|
~ the License. You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.apache.celeborn</groupId>
|
|
<artifactId>celeborn-parent_${scala.binary.version}</artifactId>
|
|
<version>${project.version}</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>celeborn-openapi-client</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Celeborn OpenAPI Client</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.annotation</groupId>
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
<artifactId>httpclient5</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents.core5</groupId>
|
|
<artifactId>httpcore5</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents.core5</groupId>
|
|
<artifactId>httpcore5-h2</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>jackson-databind-nullable</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<configuration>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>org.openapitools</pattern>
|
|
<shadedPattern>${shading.prefix}.org.openapitools</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>javax.annotation</pattern>
|
|
<shadedPattern>${shading.prefix}.javax.annotation</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.fasterxml.jackson</pattern>
|
|
<shadedPattern>${shading.prefix}.com.fasterxml.jackson</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>jakarta.validation</pattern>
|
|
<shadedPattern>${shading.prefix}.jakarta.validation</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>javax.validation</pattern>
|
|
<shadedPattern>${shading.prefix}.javax.validation</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>javax.ws.rs.ext</pattern>
|
|
<shadedPattern>${shading.prefix}.javax.ws.rs.ext</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.apache.hc</pattern>
|
|
<shadedPattern>${shading.prefix}.org.apache.hc</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.slf4j</pattern>
|
|
<shadedPattern>${shading.prefix}.org.slf4j</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>META-INF/versions/11/com/fasterxml/jackson</pattern>
|
|
<shadedPattern>META-INF/versions/11/org/apache/celeborn/shaded/com/fasterxml/jackson</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>META-INF/versions/17/com/fasterxml/jackson</pattern>
|
|
<shadedPattern>META-INF/versions/17/org/apache/celeborn/shaded/com/fasterxml/jackson</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>META-INF/versions/19/com/fasterxml/jackson</pattern>
|
|
<shadedPattern>META-INF/versions/19/org/apache/celeborn/shaded/com/fasterxml/jackson</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>com.fasterxml.jackson.core:jackson-annotations</include>
|
|
<include>com.fasterxml.jackson.core:jackson-databind</include>
|
|
<include>com.fasterxml.jackson.datatype:jackson-datatype-jsr310</include>
|
|
<include>org.apache.httpcomponents.client5:httpclient5</include>
|
|
<include>org.apache.httpcomponents.core5:httpcore5</include>
|
|
<include>org.apache.httpcomponents.core5:httpcore5-h2</include>
|
|
<include>com.fasterxml.jackson.core:jackson-core</include>
|
|
<include>com.google.code.findbugs:jsr305</include>
|
|
<include>jakarta.annotation:jakarta.annotation-api</include>
|
|
<include>org.openapitools:jackson-databind-nullable</include>
|
|
<include>org.slf4j:slf4j-api</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/*.SF</exclude>
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
<exclude>**/log4j.properties</exclude>
|
|
<exclude>META-INF/DEPENDENCIES</exclude>
|
|
<exclude>META-INF/*LICENSE*</exclude>
|
|
<exclude>META-INF/MANIFEST.MF</exclude>
|
|
<exclude>META-INF/*NOTICE*</exclude>
|
|
<exclude>META-INF/**/module-info.class</exclude>
|
|
<exclude>LICENSE.txt</exclude>
|
|
<exclude>NOTICE.txt</exclude>
|
|
<exclude>mozilla/*.txt</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
<transformers>
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"></transformer>
|
|
</transformers>
|
|
</configuration>
|
|
</plugin>
|
|
<!--
|
|
This is to ensure references to shaded classes can be resolved in IDEs such as Intellij.
|
|
For reference: https://youtrack.jetbrains.com/issue/IDEA-126596
|
|
-->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>compile</id>
|
|
<goals>
|
|
<goal>attach-artifact</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<artifacts>
|
|
<artifact>
|
|
<file>${basedir}/target/${project.artifactId}-${project.version}.jar</file>
|
|
<type>jar</type>
|
|
<classifier>optional</classifier>
|
|
</artifact>
|
|
</artifacts>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>generate</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>openapi-generator-maven-plugin</artifactId>
|
|
<!--
|
|
please keep the schema definitions consistent between master_rest_v1.yaml and worker_rest_v1.yaml
|
|
-->
|
|
<executions>
|
|
<execution>
|
|
<id>generate-java-master-rest-v1</id>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
<phase>generate-sources</phase>
|
|
<configuration>
|
|
<inputSpec>${project.basedir}/src/main/openapi3/master_rest_v1.yaml</inputSpec>
|
|
<output>${project.build.directory}/generated-sources/java</output>
|
|
<apiPackage>org.apache.celeborn.rest.v1.master</apiPackage>
|
|
<modelPackage>org.apache.celeborn.rest.v1.model</modelPackage>
|
|
<invokerPackage>org.apache.celeborn.rest.v1.master.invoker</invokerPackage>
|
|
<generatorName>java</generatorName>
|
|
<generateApiTests>false</generateApiTests>
|
|
<generateModelTests>false</generateModelTests>
|
|
<groupId>${groupId}</groupId>
|
|
<artifactId>${artifactId}</artifactId>
|
|
<artifactVersion>${project.version}</artifactVersion>
|
|
<addCompileSourceRoot>false</addCompileSourceRoot>
|
|
<templateDirectory>${project.basedir}/src/main/openapi3/templates</templateDirectory>
|
|
<cleanupOutput>true</cleanupOutput>
|
|
<configOptions>
|
|
<licenseName>Apache License 2.0</licenseName>
|
|
<groupId>${groupId}</groupId>
|
|
<artifactId>${artifactId}</artifactId>
|
|
<artifactVersion>${project.version}</artifactVersion>
|
|
<dateLibrary>java8</dateLibrary>
|
|
<useGzipFeature>true</useGzipFeature>
|
|
<library>apache-httpclient</library>
|
|
<hideGenerationTimestamp>true</hideGenerationTimestamp>
|
|
<supportUrlQuery>false</supportUrlQuery>
|
|
<annotationLibrary>none</annotationLibrary>
|
|
<useEnumCaseInsensitive>true</useEnumCaseInsensitive>
|
|
</configOptions>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generate-java-worker-rest-v1</id>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
<phase>generate-sources</phase>
|
|
<configuration>
|
|
<inputSpec>${project.basedir}/src/main/openapi3/worker_rest_v1.yaml</inputSpec>
|
|
<output>${project.build.directory}/generated-sources/java</output>
|
|
<apiPackage>org.apache.celeborn.rest.v1.worker</apiPackage>
|
|
<modelPackage>org.apache.celeborn.rest.v1.model</modelPackage>
|
|
<invokerPackage>org.apache.celeborn.rest.v1.worker.invoker</invokerPackage>
|
|
<generatorName>java</generatorName>
|
|
<generateApiTests>false</generateApiTests>
|
|
<generateModelTests>false</generateModelTests>
|
|
<groupId>${groupId}</groupId>
|
|
<artifactId>${artifactId}</artifactId>
|
|
<artifactVersion>${project.version}</artifactVersion>
|
|
<addCompileSourceRoot>false</addCompileSourceRoot>
|
|
<templateDirectory>${project.basedir}/src/main/openapi3/templates</templateDirectory>
|
|
<configOptions>
|
|
<licenseName>Apache License 2.0</licenseName>
|
|
<groupId>${groupId}</groupId>
|
|
<artifactId>${artifactId}</artifactId>
|
|
<artifactVersion>${project.version}</artifactVersion>
|
|
<dateLibrary>java8</dateLibrary>
|
|
<useGzipFeature>true</useGzipFeature>
|
|
<library>apache-httpclient</library>
|
|
<hideGenerationTimestamp>true</hideGenerationTimestamp>
|
|
<supportUrlQuery>false</supportUrlQuery>
|
|
<annotationLibrary>none</annotationLibrary>
|
|
<useEnumCaseInsensitive>true</useEnumCaseInsensitive>
|
|
</configOptions>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-resources</id>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<phase>generate-resources</phase>
|
|
<configuration>
|
|
<outputDirectory>${project.basedir}/src/main/java</outputDirectory>
|
|
<overwrite>true</overwrite>
|
|
<resources>
|
|
<resource>
|
|
<directory>${project.basedir}/target/generated-sources/java/src/main/java</directory>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|