spnego
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.java.spnego</groupId> <artifactId>spnego</artifactId> <version>1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ ~ Copyright (c) 2007, Java Spnego Development Team. All Rights Reserved. ~ ~ http://spnego.dev.java.net/servlets/ProjectMemberList ~ ~ ~ This file is licensed under the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE ~ (CDDL) Version 1.0 (the "License"). You may not use any content of this file ~ for any purpose or under any circumstances other than those explicitly ~ permitted by the License. You may obtain a copy of the License from: ~ ~ http://www.opensource.org/licenses/cddl1.txt ~ ~ Your use of this file, any of its contents or products indicates your ~ acceptance of the terms and conditions of 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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.java.spnego</groupId> <artifactId>spnego</artifactId> <packaging>jar</packaging> <version>1.1</version> <name>spnego</name> <scm> <connection>scm:svn:https://spnego.dev.java.net/svn/spnego/trunk/jsr196</connection> <developerConnection>scm:svn:https://spnego.dev.java.net/svn/spnego/trunk/jsr196</developerConnection> <url>https://spnego.dev.java.net/svn/spnego/jsr196</url> </scm> <parent> <groupId>net.java.spnego</groupId> <artifactId>spnego-parent</artifactId> <version>1.1</version> </parent> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.security.auth.message</groupId> <artifactId>jmac</artifactId> <version>1.0-rev-1</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>au.net.ocean.ext</groupId> <artifactId>httpclient-auth-spnego</artifactId> <version>1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.1</version> <scope>test</scope> </dependency> <!--Manually install after downloading glassfish from: https://glassfish.dev.java.net/downloads/v2-b41.html--> <!--<dependency>--> <!--<groupId>net.java.dev.glassfish</groupId>--> <!--<artifactId>appserv-rt</artifactId>--> <!--<version>9.1.v2-b41</version>--> <!--<scope>provided</scope>--> <!--</dependency>--> </dependencies> <properties> <test.war.name>${build.finalName}-test</test.war.name> <test.artifact>${project.build.directory}/artifacts/${test.war.name}.war</test.artifact> <as.domain.auth.realm>JAASTestRealm</as.domain.auth.realm> <as.domain.auth.jaas.context>JAASTest</as.domain.auth.jaas.context> </properties> <build> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <goals> <goal>testResources</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <testFailureIgnore>true</testFailureIgnore> </configuration> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <version>2.0.2</version> <inherited>true</inherited> <configuration> <warName>${test.war.name}</warName> <webappDirectory>${project.build.directory}/test-war</webappDirectory> <outputDirectory>${project.build.directory}/artifacts</outputDirectory> <primaryArtifact>false</primaryArtifact> <warSourceDirectory>${project.build.directory}/test-war</warSourceDirectory> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> <executions> <execution> <id>test-war</id> <phase>package</phase> <goals> <goal>war</goal> </goals> </execution> </executions> </plugin> <!--<plugin>--> <!--<groupId>org.apache.maven.plugins</groupId>--> <!--<artifactId>maven-verifier-plugin</artifactId>--> <!--<executions>--> <!--<execution>--> <!--<id>verify-integration-tests</id>--> <!--<phase>verify</phase>--> <!--<goals>--> <!--<goal>verify</goal>--> <!--</goals>--> <!--<configuration>--> <!--<verificationFile>src/test/verifier/integration-test-verification.xml</verificationFile>--> <!--</configuration>--> <!--</execution>--> <!--</executions>--> <!--</plugin>--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> </project>