okdp-spark-auth-filter
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.okdp</groupId> <artifactId>okdp-spark-auth-filter</artifactId> <version>1.2.2</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.okdp</groupId> <artifactId>okdp-spark-auth-filter</artifactId> <name>OIDC authentication filter for Apache spark</name> <version>1.2.2</version> <description>OIDC authentication filter for Apache spark web UIs (Spark app and History Web UIs)</description> <url>https://okdp.io</url> <issueManagement> <system>GitHub</system> <url>https://github.com/okdp/okdp-spark-auth-filter/issues?sort=created&direction=desc&state=open</url> </issueManagement> <developers> <developer> <id>idirze</id> <name>idir IZITOUNENE</name> <email>idir.izitounene@kubotal.io</email> <url>https://github.com/idirze</url> <organization>okdp</organization> <organizationUrl>okdp.io</organizationUrl> <timezone>-6</timezone> </developer> <developer> <id>SergeAlexandre</id> <name>Serge Alexandre</name> <email>serge.alexandre@kubotal.io</email> <url>https://github.com/SergeAlexandre</url> <organization>okdp</organization> <organizationUrl>okdp.io</organizationUrl> <timezone>-6</timezone> </developer> <developer> <id>mlahouar</id> <name>Moncef LAHOUAR</name> <email>moncef.lahouar@kubotal.io</email> <url>https://github.com/mlahouar</url> <organization>okdp</organization> <organizationUrl>okdp.io</organizationUrl> <timezone>-6</timezone> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/okdp/okdp-spark-auth-filter.git</connection> <developerConnection>scm:git:https://github.com/okdp/okdp-spark-auth-filter.git</developerConnection> <url>https://github.com/okdp/okdp-spark-auth-filter.git</url> </scm> <organization> <name>OKDP</name> <url>https://okdp.io/</url> </organization> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <showWarnings>false</showWarnings> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven-shade-plugin.version}</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless-maven-plugin.version}</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>false</shadedArtifactAttached> <transformers> <transformer /> </transformers> <artifactSet> <excludes> <exclude>org.slf4j:*</exclude> </excludes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/MANIFEST.MF</exclude> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>org.apache.hc</pattern> <shadedPattern>io.okdp_shaded.apache.hc</shadedPattern> </relocation> <relocation> <pattern>com.github.benmanes.caffeine</pattern> <shadedPattern>io.okdp_shaded.com.github.benmanes.caffeine</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <executions> <execution> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <java> <googleJavaFormat> <version>1.20.0</version> <style>GOOGLE</style> </googleJavaFormat> <removeUnusedImports /> <formatAnnotations /> <licenseHeader> <file>${project.basedir}/.copyright</file> </licenseHeader> </java> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <deploymentName>${project.artifactId}-${project.version}</deploymentName> <outputFilename>${project.artifactId}-${project.version}.zip</outputFilename> <waitUntil>validated</waitUntil> <tokenAuth>true</tokenAuth> <failOnBuildFailure>true</failOnBuildFailure> <checksums>required</checksums> <autoPublish>false</autoPublish> <skipPublishing>false</skipPublishing> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>tests</id> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <doclint>none</doclint> </configuration> </execution> </executions> <configuration> <doclint>none</doclint> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</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> </profiles> <dependencies> <dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-core_2.12</artifactId> <version>[3.1.1,)</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.30</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-suite-api</artifactId> <version>1.10.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-platform-commons</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit-pioneer</groupId> <artifactId>junit-pioneer</artifactId> <version>2.2.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-platform-launcher</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.25.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.10.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.httpcomponents.client5</groupId> <artifactId>httpclient5-fluent</artifactId> <version>${httpclient5-fluent.version}</version> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>${caffeine.version}</version> </dependency> <dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-core_${scala.version}</artifactId> <version>${spark.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.junit-pioneer</groupId> <artifactId>junit-pioneer</artifactId> <version>${junit-pioneer.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <repository> <id>central</id> <url>https://central.sonatype.com</url> </repository> <snapshotRepository> <id>central</id> <url>https://central.sonatype.com</url> </snapshotRepository> </distributionManagement> <properties> <central-publishing-maven-plugin.version>0.4.0</central-publishing-maven-plugin.version> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> <slf4j.version>2.0.11</slf4j.version> <httpclient5-fluent.version>5.3.1</httpclient5-fluent.version> <junit.version>5.10.0</junit.version> <caffeine.version>3.1.8</caffeine.version> <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> <maven.compiler.source>11</maven.compiler.source> <maven-shade-plugin.version>3.5.2</maven-shade-plugin.version> <maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version> <spotless-maven-plugin.version>2.43.0</spotless-maven-plugin.version> <spark.version>[3.1.1,)</spark.version> <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> <scala.version>2.12</scala.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <assertj.version>3.25.3</assertj.version> <jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version> <maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version> <mockito.version>5.10.0</mockito.version> <junit-pioneer.version>2.2.0</junit-pioneer.version> <lombok.version>1.18.30</lombok.version> <maven.compiler.target>11</maven.compiler.target> <maven-site-plugin.version>3.12.1</maven-site-plugin.version> </properties> </project>