ranger
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.appform.ranger</groupId>
<artifactId>ranger</artifactId>
<version>2.0.0-RC5</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2024 Authors, Flipkart Internet Pvt. 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.appform.ranger</groupId>
<artifactId>ranger</artifactId>
<packaging>pom</packaging>
<version>2.0.0-RC5</version>
<name>Ranger Service Discovery</name>
<url>https://github.com/appform-io/ranger</url>
<description>Service Discovery for Java</description>
<inceptionYear>2015</inceptionYear>
<modules>
<module>ranger-core</module>
<module>ranger-zookeeper</module>
<module>ranger-http</module>
<module>ranger-drove</module>
<module>ranger-client</module>
<module>ranger-zk-client</module>
<module>ranger-id</module>
<module>ranger-http-client</module>
<module>ranger-drove-client</module>
<module>ranger-server-common</module>
<module>ranger-server-bundle</module>
<module>ranger-server-dw5-bundle</module>
<module>ranger-http-model</module>
<module>ranger-discovery-core</module>
<module>ranger-discovery-bundle</module>
<module>ranger-discovery-dw5-bundle</module>
<module>ranger-hub-server-bundle-core</module>
<module>ranger-hub-server-bundle</module>
<module>ranger-hub-server-dw5-bundle</module>
<module>ranger-server</module>
<module>ranger-bom</module>
<module>ranger-reporting</module>
<module>ranger-parent</module>
</modules>
<scm>
<connection>scm:git:https://github.com/appform-io/ranger.git</connection>
<developerConnection>scm:git:https://github.com/appform-io/ranger.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/appform-io/ranger</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/appform-io/ranger/issues</url>
</issueManagement>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<developers>
<developer>
<id>santanusinha</id>
<name>Santanu Sinha</name>
<email>santanu.sinha@gmail.com</email>
</developer>
<developer>
<id>Tushar-Naik</id>
<name>Tushar Naik</name>
<email>tushar.naik@flipkart.com</email>
</developer>
<developer>
<id>koushikr</id>
<name>Koushik Ramachandra</name>
<email>rkoushik.14@gmail.com</email>
</developer>
</developers>
<properties>
<!-- Project Properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<java.release.version>17</java.release.version>
<!-- Maven Plugins -->
<maven.compiler.version>3.14.1</maven.compiler.version>
<maven-surefire-plugin.version>3.5.4</maven-surefire-plugin.version>
<maven-surefire-junit5-tree-reporter.version>1.4.0</maven-surefire-junit5-tree-reporter.version>
<jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.12.0</maven-javadoc-plugin.version>
<!-- Security Patches -->
<okio.version>3.16.2</okio.version>
<json-path.version>2.9.0</json-path.version>
<commons-lang3.version>3.19.0</commons-lang3.version>
<commons-codec.version>1.19.0</commons-codec.version>
<json-smart.version>2.6.0</json-smart.version>
<xmlunit-core.version>2.10.3</xmlunit-core.version>
<jetty-bom.version>9.4.58.v20250814</jetty-bom.version>
<netty.version>4.1.127.Final</netty.version>
<snappy.version>1.1.10.8</snappy.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<maven.enforcer.version>3.6.2</maven.enforcer.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.release.version}</release>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<dependencies>
<dependency>
<groupId>me.fabriciorby</groupId>
<artifactId>maven-surefire-junit5-tree-reporter</artifactId>
<version>${maven-surefire-junit5-tree-reporter.version}</version>
</dependency>
</dependencies>
<configuration>
<reportFormat>plain</reportFormat>
<consoleOutputReporter>
<disable>true</disable>
</consoleOutputReporter>
<statelessTestsetInfoReporter
implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter">
<printStacktraceOnError>true</printStacktraceOnError>
<printStacktraceOnFailure>true</printStacktraceOnFailure>
<printStdoutOnError>true</printStdoutOnError>
<printStdoutOnFailure>true</printStdoutOnFailure>
<printStdoutOnSuccess>false</printStdoutOnSuccess>
<printStderrOnError>true</printStderrOnError>
<printStderrOnFailure>true</printStderrOnFailure>
<printStderrOnSuccess>false</printStderrOnSuccess>
</statelessTestsetInfoReporter>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<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</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>all,-missing</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-enforcer-plugin</artifactId>
<version>${maven.enforcer.version}</version>
<executions>
<execution>
<id>enforce-rules</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<reactorModuleConvergence>
<message>The reactor is not valid</message>
</reactorModuleConvergence>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>central-release</id>
<activation>
<property>
<name>release</name>
<value>true</value>
</property>
</activation>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://ossrh-staging-api.central.sonatype.com</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://ossrh-staging-api.central.sonatype.com</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.5.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>github</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</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>
<!-- The following are required for dns cache manipulator.
Ref: https://github.com/alibaba/java-dns-cache-manipulator#jvm-settings-for-java-16 -->
<profile>
<id>add-java-open-options-for-jdk16+</id>
<activation>
<jdk>[16,)</jdk>
</activation>
<properties>
<argLine>
--add-opens java.base/java.net=ALL-UNNAMED
--add-opens java.base/sun.net=ALL-UNNAMED
</argLine>
</properties>
</profile>
</profiles>
</project>