-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into publish-internal-code
- Loading branch information
Showing
2 changed files
with
162 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright 2024 Mishmash IO UK Ltd. | ||
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. | ||
--> | ||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>io.mishmash.apache</groupId> | ||
<artifactId>mmio-for-apache-parent</artifactId> | ||
<version>0.0.1</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
|
||
<groupId>io.mishmash.apache.zookeeper</groupId> | ||
<artifactId>mmio-zookeeper-stable-server-metrics</artifactId> | ||
<version>${zookeeper.stable.version}-mmio.${zookeeper.stable.mishmash.io.patch}</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>Modifications and extensions of Apache ZooKeeper, by mishmash io</name> | ||
<description> | ||
Apache ZooKeeper is a service for coordinating processes of distributed applications. | ||
|
||
This package contains Apache ZooKeeper as modified by mishmash io. For more info on the | ||
specific modifications visit our website or github. | ||
|
||
It is recommended that you don't use this package directly, but rather - one of the | ||
dependency-reduced client or server packages. | ||
</description> | ||
<url>https://mishmash.io/open_source/apache_big_data</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>The Apache Software License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
<organization> | ||
<name>mishmash io</name> | ||
<url>https://mishmash.io</url> | ||
</organization> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/mishmash-io/for-apache.git</connection> | ||
<developerConnection>scm:git:https://github.com/mishmash-io/for-apache.git</developerConnection> | ||
<url>https://github.com/mishmash-io/for-apache</url> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<name>Ivan Kountchev</name> | ||
<email>[email protected]</email> | ||
<organization>mishmash io</organization> | ||
<organizationUrl>https://mishmash.io</organizationUrl> | ||
<roles> | ||
<role>developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<name>Andrey Rusev</name> | ||
<email>[email protected]</email> | ||
<url>www.linkedin.com/in/andrey-rusev-21894172</url> | ||
<organization>mishmash io</organization> | ||
<organizationUrl>https://mishmash.io</organizationUrl> | ||
<roles> | ||
<role>architect</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.mishmash.apache.zookeeper</groupId> | ||
<artifactId>mmio-zookeeper-stable</artifactId> | ||
<version>${project.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<!--dependency> | ||
<groupId>com.github.spotbugs</groupId> | ||
<artifactId>spotbugs-annotations</artifactId> | ||
<scope>provided</scope> | ||
<optional>true</optional> | ||
</dependency--> | ||
<!--dependency> | ||
<groupId>io.mishmash.apache.zookeeper</groupId> | ||
<artifactId>mmio-zookeeper-stable-client</artifactId> | ||
<version>${project.version}</version> | ||
</dependency--> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>unpack</id> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>unpack</goal> | ||
</goals> | ||
<configuration> | ||
<artifactItems> | ||
<artifactItem> | ||
<groupId>io.mishmash.apache.zookeeper</groupId> | ||
<artifactId>mmio-zookeeper-stable</artifactId> | ||
<version>${project.version}</version> | ||
<type>jar</type> | ||
<classifier>sources</classifier> | ||
<overWrite>false</overWrite> | ||
<includes> | ||
**/zookeeper/metrics/**, | ||
**/zookeeper/server/metric/** | ||
</includes> | ||
</artifactItem> | ||
</artifactItems> | ||
<outputDirectory>${project.build.directory}/generated-sources/java</outputDirectory> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>add-zookeeper-sources</id> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>add-source</goal> | ||
</goals> | ||
<configuration> | ||
<sources> | ||
<source>${project.build.directory}/generated-sources/java</source> | ||
</sources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters