mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-11 15:35:05 +00:00
When https://github.com/elastic/elasticsearch/pull/12879 will be merged, this commit should be merged as well. ``` [INFO] Reactor Summary: [INFO] [INFO] Elasticsearch Commercial Plugin Build Resources .... SUCCESS [ 0.228 s] [INFO] Elasticsearch X-Plugins - Parent POM ............... SUCCESS [ 0.282 s] [INFO] X-Plugins: License: Parent POM ..................... SUCCESS [ 0.089 s] [INFO] X-Plugins: License: Core ........................... SUCCESS [ 0.118 s] [INFO] X-Plugins: License: Licensor ....................... SUCCESS [ 0.150 s] [INFO] X-Plugins: License: Plugin API ..................... SUCCESS [ 0.106 s] [INFO] X-Plugins: License: Plugin ......................... SUCCESS [ 0.112 s] [INFO] X-Plugins: Shield .................................. SUCCESS [ 0.234 s] [INFO] X-Plugins: Watcher ................................. SUCCESS [ 0.264 s] [INFO] X-Plugins: Marvel .................................. SUCCESS [ 0.113 s] [INFO] QA: Parent POM ..................................... SUCCESS [ 0.097 s] [INFO] QA: Smoke Test X-Plugins ........................... SUCCESS [ 0.107 s] [INFO] QA: Shield core REST tests ......................... SUCCESS [ 0.093 s] [INFO] QA: Smoke Test Watcher's Shield integration ........ SUCCESS [ 0.109 s] ``` Original commit: elastic/x-pack-elasticsearch@e9871261cf
84 lines
3.1 KiB
XML
84 lines
3.1 KiB
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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>marvel</artifactId>
|
|
<name>X-Plugins: Marvel</name>
|
|
<description>Elasticsearch Marvel</description>
|
|
|
|
<parent>
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
|
<artifactId>x-plugins</artifactId>
|
|
<version>2.1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<elasticsearch.plugin.classname>org.elasticsearch.marvel.MarvelPlugin</elasticsearch.plugin.classname>
|
|
<!-- TODO: fix plugin dependencies for full isolation -->
|
|
<elasticsearch.plugin.isolated>false</elasticsearch.plugin.isolated>
|
|
<elasticsearch.integ.antfile>dev-tools/integration-tests.xml</elasticsearch.integ.antfile>
|
|
<tests.rest.suite>marvel</tests.rest.suite>
|
|
<tests.rest.load_packaged>false</tests.rest.load_packaged>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
|
<artifactId>license</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>**/*.properties</include>
|
|
<include>marvel_index_template.json</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>integ-setup-dependencies</id>
|
|
<phase>pre-integration-test</phase>
|
|
<goals>
|
|
<goal>copy</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactItems combine.children="append">
|
|
<artifactItem>
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
|
<artifactId>elasticsearch-license</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>zip</type>
|
|
<overWrite>true</overWrite>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
<useBaseVersion>true</useBaseVersion>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|