2021-08-02 11:19:40 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-08-02 15:08:30 +05:30
|
|
|
<!--
|
2021-12-01 12:46:28 +05:30
|
|
|
~ Copyright 2021 Collate
|
|
|
|
~ Licensed 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.
|
|
|
|
-->
|
2021-08-02 15:08:30 +05:30
|
|
|
|
2021-08-02 11:19:40 +05:30
|
|
|
<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>
|
2022-09-14 23:14:02 -07:00
|
|
|
<artifactId>platform</artifactId>
|
2022-06-28 11:10:07 +05:30
|
|
|
<groupId>org.open-metadata</groupId>
|
2025-08-21 21:43:01 +05:30
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2021-08-02 11:19:40 +05:30
|
|
|
</parent>
|
|
|
|
|
2021-11-23 23:48:54 -08:00
|
|
|
<artifactId>openmetadata-dist</artifactId>
|
2021-08-02 11:19:40 +05:30
|
|
|
<packaging>pom</packaging>
|
2022-09-14 23:14:02 -07:00
|
|
|
<name>OpenMetadata Distribution</name>
|
|
|
|
<description>OpenMetadata binary distribution</description>
|
2021-08-02 11:19:40 +05:30
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2022-06-28 11:10:07 +05:30
|
|
|
<groupId>org.open-metadata</groupId>
|
2022-09-14 23:14:02 -07:00
|
|
|
<artifactId>openmetadata-service</artifactId>
|
2021-08-02 11:19:40 +05:30
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2025-07-01 12:02:29 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.open-metadata</groupId>
|
|
|
|
<artifactId>openmetadata-mcp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2021-08-02 11:19:40 +05:30
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2021-08-05 10:15:52 +05:30
|
|
|
<final.Name>openmetadata</final.Name>
|
2021-08-02 11:19:40 +05:30
|
|
|
</properties>
|
|
|
|
|
2022-05-16 14:40:50 -07:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>default</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<finalName>${final.Name}-${project.version}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2022-05-14 21:08:31 +05:30
|
|
|
<configuration>
|
2022-05-16 14:40:50 -07:00
|
|
|
<attach>true</attach>
|
|
|
|
<runOnlyAtExecutionRoot>false</runOnlyAtExecutionRoot>
|
2023-02-11 09:20:38 -08:00
|
|
|
<tarLongFileMode>posix</tarLongFileMode>
|
2022-05-16 14:40:50 -07:00
|
|
|
<descriptors>
|
|
|
|
<descriptor>${project.basedir}/src/main/assembly/binary.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
2022-05-14 21:08:31 +05:30
|
|
|
</configuration>
|
2022-05-16 14:40:50 -07:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2022-10-04 09:30:05 -07:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-05-16 14:40:50 -07:00
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/libs</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-07-26 17:47:03 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.open-metadata</groupId>
|
|
|
|
<artifactId>openmetadata-ui</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-05-16 14:40:50 -07:00
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>rpm</id>
|
|
|
|
<build>
|
|
|
|
<finalName>${final.Name}-${project.version}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>rpm-maven-plugin</artifactId>
|
|
|
|
<version>2.2.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>install</phase>
|
|
|
|
<id>generate-rpm</id>
|
|
|
|
<goals>
|
|
|
|
<goal>rpm</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<group>Development/Tools</group>
|
|
|
|
<needarch>noarch</needarch>
|
|
|
|
<targetOS>Linux</targetOS>
|
|
|
|
<mappings>
|
|
|
|
<mapping>
|
|
|
|
<directory>/opt/openmetadata/bin</directory>
|
|
|
|
<filemode>755</filemode>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.basedir}/../bin</location>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
|
|
|
<mapping>
|
|
|
|
<directory>/opt/openmetadata/conf</directory>
|
|
|
|
<filemode>755</filemode>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.basedir}/../conf</location>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
|
|
|
<mapping>
|
|
|
|
<directory>/opt/openmetadata/bootstrap</directory>
|
|
|
|
<filemode>755</filemode>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.basedir}/../bootstrap</location>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
|
|
|
<mapping>
|
|
|
|
<directory>/opt/openmetadata/</directory>
|
|
|
|
<filemode>755</filemode>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.basedir}/../README.md</location>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
|
|
|
<mapping>
|
|
|
|
<directory>/opt/openmetadata/libs</directory>
|
|
|
|
<filemode>755</filemode>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.basedir}/target/libs</location>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
|
|
|
</mappings>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-07-29 11:13:11 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.open-metadata</groupId>
|
|
|
|
<artifactId>openmetadata-ui</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-05-16 14:40:50 -07:00
|
|
|
</profile>
|
2022-07-26 17:47:03 +02:00
|
|
|
<profile>
|
|
|
|
<id>only-backend</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>onlyBackend</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
2022-07-26 19:05:22 +02:00
|
|
|
<build>
|
|
|
|
<finalName>${final.Name}-${project.version}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<attach>true</attach>
|
|
|
|
<runOnlyAtExecutionRoot>false</runOnlyAtExecutionRoot>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>${project.basedir}/src/main/assembly/binary.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2022-10-04 09:30:05 -07:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-07-26 19:05:22 +02:00
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/libs</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-07-26 17:47:03 +02:00
|
|
|
</profile>
|
2023-01-03 11:18:29 +05:30
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>${maven-source-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>${maven-javadoc-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<doclint>none</doclint>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<gpgArguments>
|
|
|
|
<arg>--pinentry-mode</arg>
|
|
|
|
<arg>loopback</arg>
|
|
|
|
</gpgArguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2022-05-16 14:40:50 -07:00
|
|
|
</profiles>
|
2021-08-02 11:19:40 +05:30
|
|
|
|
|
|
|
</project>
|