ntlm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openidentityplatform.openam.auth.modules</groupId> <artifactId>ntlm</artifactId> <version>15.0.0.1</version> </dependency>
<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>org.openidentityplatform.openam</groupId> <artifactId>main</artifactId> <version>15.0.0.1</version> <relativePath>../ru.org.openam</relativePath> </parent> <groupId>org.openidentityplatform.openam.auth.modules</groupId> <artifactId>ntlm</artifactId> <packaging>war</packaging> <name>org.openidentityplatform.openam.auth.modules.ntlm</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <pluginRepositories> <pluginRepository> <id>motech.rcg.usm.maine.edu</id> <url>http://motech.rcg.usm.maine.edu/archiva/repository/all/</url> </pluginRepository> </pluginRepositories> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.openidentityplatform.openam</groupId> <artifactId>crypt</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.openidentityplatform.openam</groupId> <artifactId>openam-core</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>2.2</version> </extension> </extensions> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-plugin</artifactId> <executions> <!-- <execution> --> <!-- <id>ntlmv2auth</id> --> <!-- <phase>generate-sources</phase> --> <!-- <goals> --> <!-- <goal>status</goal> --> <!-- <goal>update</goal> --> <!-- </goals> --> <!-- <configuration> --> <!-- <connectionUrl>scm:git:git://git.code.sf.net/p/ntlmv2auth/code</connectionUrl> --> <!-- <skipCheckoutIfExists>true</skipCheckoutIfExists> --> <!-- <workingDirectory>net.sourceforge.ntlmv2auth</workingDirectory> --> <!-- <runChangelog>true</runChangelog> --> <!-- <scmVersion>master</scmVersion> --> <!-- <scmVersionType>branch</scmVersionType> --> <!-- </configuration> --> <!-- </execution> --> <!-- <execution> --> <!-- <id>jcifs</id> --> <!-- <phase>generate-sources</phase> --> <!-- <goals> --> <!-- <goal>status</goal> --> <!-- <goal>update</goal> --> <!-- </goals> --> <!-- <configuration> --> <!-- <connectionUrl>scm:git:https://git.openam.org.ru/org/org.samba.jcifs.git</connectionUrl> --> <!-- <skipCheckoutIfExists>true</skipCheckoutIfExists> --> <!-- <workingDirectory>org.samba.jcifs</workingDirectory> --> <!-- <runChangelog>true</runChangelog> --> <!-- <scmVersion>master</scmVersion> --> <!-- <scmVersionType>branch</scmVersionType> --> <!-- </configuration> --> <!-- </execution> --> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> <attachClasses>true</attachClasses> <classesClassifier>classes</classesClassifier> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/main/java</source> <source>org.samba.jcifs/src</source> <source>net.sourceforge.ntlmv2auth/ntlmv2/ntlmv2-lib/src/main/java</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>