cdap-security-extensions
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-security-extensions</artifactId> <version>0.19.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright © 2016-2019 Cask Data, Inc. 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.cdap.cdap</groupId> <artifactId>cdap-security-extensions</artifactId> <version>0.19.0</version> <modules> <module>cdap-ranger</module> <module>cdap-sentry</module> <module>cdap-security-extensions-dist</module> <module>cdap-ldap-role</module> </modules> <packaging>pom</packaging> <name>CDAP Security Extensions</name> <description>A collection of Security Extensions for the Cask Data Application Platform.</description> <url>http://github.com/cdapio/cdap-security-extn</url> <organization> <name>Cask Data, Inc.</name> <url>http://cask.co</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Cask Data</name> <email>cask-dev@googlegroups.com</email> <organization>Cask Data, Inc.</organization> <organizationUrl>http://www.cdap.io</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/cdapio/cdap-security-extn.git</connection> <developerConnection>scm:git:git@github.com:cdapio/cdap-security-extn.git</developerConnection> <url>https://github.com/cdapio/cdap-security-extn.git</url> <tag>HEAD</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <cdap.version>6.9.1</cdap.version> <commons.collections.version>3.2.2</commons.collections.version> <slf4j.version>1.7.15</slf4j.version> <junit.version>4.11</junit.version> <surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile> </properties> <repositories> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/content/groups/public</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>sonatype-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <distributionManagement> <repository> <id>sonatype.release</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sonatype.snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <site> <id>cask</id> <url>http://cask.co</url> </site> </distributionManagement> <dependencyManagement> <dependencies> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>${commons.collections.version}</version> </dependency> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-security-spi</artifactId> <version>${cdap.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-security-spi</artifactId> <version>${cdap.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-client</artifactId> <version>${cdap.version}</version> </dependency> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-common</artifactId> <version>${cdap.version}</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.17</version> <executions> <execution> <id>validate</id> <phase>process-test-classes</phase> <configuration> <configLocation>checkstyle.xml</configLocation> <suppressionsLocation>suppressions.xml</suppressionsLocation> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> <goals> <goal>check</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>6.19</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.10</version> <dependencies> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-core</artifactId> <version>1.6</version> <exclusions> <exclusion> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <executions> <execution> <id>rat-check</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> <configuration> <excludes> <exclude>build-number.txt</exclude> <exclude>LICENSE*.txt</exclude> <exclude>*.rst</exclude> <exclude>*.md</exclude> <exclude>**/*.md</exclude> <exclude>logs/**</exclude> <exclude>**/grok/patterns/**</exclude> <exclude>conf/**</exclude> <exclude>data/**</exclude> <exclude>plugins/**</exclude> <exclude>**/Apache-LICENSE-2.0</exclude> <exclude>**/VERSION</exclude> <exlcude>**/*.patch</exlcude> <exclude>**/logrotate.d/**</exclude> <exclude>**/limits.d/**</exclude> <!-- Excludes AVRO schema files --> <exclude>**/*.avsc</exclude> <exclude>**/*.json</exclude> <exclude>**/resources/**/*.properties</exclude> <exclude>**/*.json.template</exclude> <exclude>**/MANIFEST.MF</exclude> <exclude>**/.rubocop*.yml</exclude> <exclude>**/setup.cfg</exclude> <exclude>**/*.iml</exclude> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.14.1</version> <configuration> <argLine>-Xmx5000m -Djava.awt.headless=true -XX:MaxPermSize=256m -XX:+UseConcMarkSweepGC -XX:OnOutOfMemoryError="kill -9 %p" -XX:+HeapDumpOnOutOfMemoryError</argLine> <redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile> <reuseForks>false</reuseForks> <reportFormat>plain</reportFormat> <trimStackTrace>false</trimStackTrace> <systemPropertyVariables> <java.io.tmpdir>${project.build.directory}</java.io.tmpdir> <derby.stream.error.file>${basedir}/target/derby.log</derby.stream.error.file> </systemPropertyVariables> <includes> <include>**/*TestsSuite.java</include> <include>**/*TestSuite.java</include> <include>**/Test*.java</include> <include>**/*Test.java</include> <include>**/*TestCase.java</include> </includes> <excludes> <exclude>**/*TestRun.java</exclude> <exclude>**/*TestBase.java</exclude> </excludes> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit47</artifactId> <version>2.14</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> <!-- Checkstyle and Compile plugin are always run for all modules --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.17</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.10</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.14.1</version> </plugin> </plugins> </build> <!-- Profile for release. Includes signing of jars. --> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.2</version> <extensions>true</extensions> <configuration> <nexusUrl>https://oss.sonatype.org</nexusUrl> <serverId>sonatype.release</serverId> </configuration> </plugin> <!-- Source JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <configuration> <excludeResources>true</excludeResources> </configuration> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <additionalparam>-Xdoclint:none</additionalparam> <failOnError>false</failOnError> <links> <link>http://download.oracle.com/javase/${jee.version}/docs/api/</link> </links> <doctitle>${project.name} ${project.version}</doctitle> <bottom> <![CDATA[Copyright © {currentYear} <a href="http://cask.co" target="_blank">Cask Data, Inc.</a> Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License, Version 2.0</a>.]]> </bottom> </configuration> <executions> <execution> <id>attach-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <configuration> <passphrase>${gpg.passphrase}</passphrase> <useAgent>${gpg.useagent}</useAgent> </configuration> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>