dlic-search-guard-auth-http-jwt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.floragunn</groupId>
<artifactId>dlic-search-guard-auth-http-jwt</artifactId>
<version>6.0-21.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2016 by floragunn GmbH - All rights reserved
Unless required by applicable law or agreed to in writing, software distributed
here is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. -->
<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>
<parent>
<groupId>com.floragunn</groupId>
<artifactId>search-guard-parent</artifactId>
<version>6.20.0</version>
</parent>
<artifactId>dlic-search-guard-auth-http-jwt</artifactId>
<version>6.0-21.1</version>
<packaging>jar</packaging>
<name>Search Guard JWT</name>
<description>Provide JWT (JSON Web Token) authentication for elasticsearch</description>
<url>https://github.com/floragunncom/search-guard-auth-http-jwt</url>
<inceptionYear>2016</inceptionYear>
<properties>
<sg2.version>6.2-21.0-api</sg2.version>
<elasticsearch.version>6.1.0</elasticsearch.version>
<dependency.locations.enabled>false</dependency.locations.enabled>
</properties>
<scm>
<url>https://github.com/floragunncom/search-guard-auth-http-jwt</url>
<connection>scm:git:git@github.com:floragunncom/search-guard-auth-http-jwt.git</connection>
<developerConnection>scm:git:git@github.com:floragunncom/search-guard-auth-http-jwt.git</developerConnection>
<tag>ves-6.0-21.1</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/floragunncom/search-guard-auth-http-jwt/issues</url>
</issueManagement>
<contributors />
<dependencies>
<dependency>
<groupId>com.floragunn</groupId>
<artifactId>search-guard-6</artifactId>
<version>${sg2.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.9.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>${elasticsearch.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.9.0</version>
<exclusions>
<exclusion>
<artifactId>jackson-databind</artifactId>
<groupId>com.fasterxml.jackson.core</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.8.11</version>
<exclusions>
<exclusion>
<artifactId>jackson-core</artifactId>
<groupId>com.fasterxml.jackson.core</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-cache</artifactId>
<version>4.5.3</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-security-jose</artifactId>
<version>3.2.2</version>
</dependency>
<!-- Only test scoped dependencies hereafter -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.floragunn</groupId>
<artifactId>search-guard-6</artifactId>
<version>${sg2.version}</version>
<scope>test</scope>
<classifier>tests</classifier>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<!-- <plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>-->
</plugins>
</build>
</project>