tomcat85-authnz-spnego-ad
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.michael-o.tomcat</groupId> <artifactId>tomcat85-authnz-spnego-ad</artifactId> <version>4.2.4</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"> <parent> <artifactId>tomcat-authnz-spnego-ad</artifactId> <groupId>net.sf.michael-o.tomcat</groupId> <version>4.2.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>tomcat85-authnz-spnego-ad</artifactId> <name>SPNEGO/Kerberos Authenticator and Active Directory Realm for Apache Tomcat 8.5 (retired)</name> <build> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <executions> <execution> <id>delete-dependency-reduced-pom</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> <configuration> <filesets> <filesets> <directory>${basedir}</directory> <includes> <include>dependency-reduced-pom.xml</include> </includes> </filesets> </filesets> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.apache.commons:commons-lang3</include> </includes> </artifactSet> <filters> <filter> <artifact>org.apache.commons:commons-lang3</artifact> <includes> <include>org/apache/commons/lang3/StringUtils.class</include> <include>org/apache/commons/lang3/CharSequenceUtils.class</include> </includes> </filter> </filters> <relocations> <relocation> <pattern>org.apache.commons.lang3</pattern> <shadedPattern>net.sf.michaelo.tomcat.internal.org.apache.commons.lang3</shadedPattern> </relocation> </relocations> <promoteTransitiveDependencies>true</promoteTransitiveDependencies> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <locale>en</locale> <links> <link>https://tomcat.apache.org/tomcat-8.5-doc/api</link> <link>https://tomcat.apache.org/tomcat-8.5-doc/servletapi</link> <link>https://tomcat.apache.org/tomcat-8.5-doc/jaspicapi</link> <link>https://michael-o.github.io/dirctxsrc/apidocs/</link> </links> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.sf.michael-o.dirctxsrc</groupId> <artifactId>dircontextsource</artifactId> <version>2.3.1</version> <scope>compile</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <locale>en</locale> <links> <link>https://tomcat.apache.org/tomcat-8.5-doc/api</link> <link>https://tomcat.apache.org/tomcat-8.5-doc/servletapi</link> <link>https://tomcat.apache.org/tomcat-8.5-doc/jaspicapi</link> <link>https://michael-o.github.io/dirctxsrc/apidocs/</link> </links> </configuration> </plugin> </plugins> </reporting> <properties> <maven.compiler.release>${javaVersion}</maven.compiler.release> <maven.compiler.target>${javaVersion}</maven.compiler.target> <tomcatVersion>8.5.100</tomcatVersion> <javaVersion>7</javaVersion> <maven.compiler.source>${javaVersion}</maven.compiler.source> </properties> </project>