249 lines
12 KiB
XML
249 lines
12 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.shardingsphere</groupId>
|
|
<artifactId>shardingsphere-distribution</artifactId>
|
|
<version>5.5.2-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>shardingsphere-proxy-native-distribution</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>${project.artifactId}</name>
|
|
|
|
<properties>
|
|
<proxy.native.image.name>proxy-native</proxy.native.image.name>
|
|
<proxy.native.image.platform>linux/amd64,linux/arm64</proxy.native.image.platform>
|
|
<proxy.native.image.repository>apache/shardingsphere-proxy-native</proxy.native.image.repository>
|
|
<proxy.native.image.tag>${project.version}</proxy.native.image.tag>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.shardingsphere</groupId>
|
|
<artifactId>shardingsphere-proxy-bootstrap</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.shardingsphere</groupId>
|
|
<artifactId>shardingsphere-infra-reachability-metadata</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.opengauss</groupId>
|
|
<artifactId>opengauss-jdbc</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>release.native</id>
|
|
<build>
|
|
<finalName>apache-shardingsphere-${project.version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.graalvm.buildtools</groupId>
|
|
<artifactId>native-maven-plugin</artifactId>
|
|
<version>${native-maven-plugin.version}</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<mainClass>org.apache.shardingsphere.proxy.Bootstrap</mainClass>
|
|
<imageName>${proxy.native.image.name}</imageName>
|
|
<buildArgs>
|
|
<buildArg>-H:+AddAllCharsets</buildArg>
|
|
</buildArgs>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>build-native</id>
|
|
<goals>
|
|
<goal>compile-no-fork</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
</execution>
|
|
<execution>
|
|
<id>test-native</id>
|
|
<goals>
|
|
<goal>test</goal>
|
|
</goals>
|
|
<phase>test</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/shardingsphere-proxy-native-binary-distribution.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>build and package</id>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>net.nicoulaj.maven.plugins</groupId>
|
|
<artifactId>checksum-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>docker.native</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>${exec-maven-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>build docker image</id>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<executable>docker</executable>
|
|
<arguments>
|
|
<argument>build</argument>
|
|
<argument>--build-arg</argument>
|
|
<argument>OUTPUT_DIRECTORY_NAME=${project.build.finalName}-shardingsphere-proxy-native-bin</argument>
|
|
<argument>.</argument>
|
|
<argument>-t</argument>
|
|
<argument>${proxy.native.image.repository}:${proxy.native.image.tag}</argument>
|
|
<argument>-t</argument>
|
|
<argument>${proxy.native.image.repository}:latest</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>docker.buildx.push.native</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>${exec-maven-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>create builder</id>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<executable>docker</executable>
|
|
<arguments>
|
|
<argument>buildx</argument>
|
|
<argument>create</argument>
|
|
<argument>--driver</argument>
|
|
<argument>docker-container</argument>
|
|
<argument>--name</argument>
|
|
<argument>shardingsphere-builder</argument>
|
|
<argument>--platform</argument>
|
|
<argument>${proxy.native.image.platform}</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>build and push docker image</id>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<executable>docker</executable>
|
|
<arguments>
|
|
<argument>buildx</argument>
|
|
<argument>build</argument>
|
|
<argument>--push</argument>
|
|
<argument>--builder</argument>
|
|
<argument>shardingsphere-builder</argument>
|
|
<argument>--platform</argument>
|
|
<argument>${proxy.native.image.platform}</argument>
|
|
<argument>--build-arg</argument>
|
|
<argument>OUTPUT_DIRECTORY_NAME=${project.build.finalName}-shardingsphere-proxy-native-bin</argument>
|
|
<argument>.</argument>
|
|
<argument>-t</argument>
|
|
<argument>${proxy.native.image.repository}:${proxy.native.image.tag}</argument>
|
|
<argument>-t</argument>
|
|
<argument>${proxy.native.image.repository}:latest</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>cleanup builder</id>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<executable>docker</executable>
|
|
<arguments>
|
|
<argument>buildx</argument>
|
|
<argument>rm</argument>
|
|
<argument>shardingsphere-builder</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|