miniauth-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.aerysoft.miniauth</groupId> <artifactId>miniauth-web</artifactId> <version>0.9.5</version> </dependency>
<?xml version="1.0"?> <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.aerysoft.miniauth</groupId> <artifactId>miniauth</artifactId> <version>0.9.5</version> </parent> <!-- <groupId>org.aerysoft.miniauth</groupId> --> <artifactId>miniauth-web</artifactId> <name>MiniAuth Web</name> <description>MiniAuth OAuth signature library in Java. Web/Servlet-support module.</description> <url>http://www.miniauth.org/miniauth-web/</url> <inceptionYear>2013</inceptionYear> <!-- <distributionManagement> <site> <id>miniauth.web</id> <url>scp://www.miniauth.org/web</url> </site> </distributionManagement> --> <!-- <repositories> <repository> <id>org.apache.tomcat</id> <url>http://repo2.maven.org/maven2/org/apache/tomcat/</url> </repository> </repositories> --> <dependencies> <dependency> <groupId>org.aerysoft.miniauth</groupId> <artifactId>miniauth-core</artifactId> <version>0.9.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.aerysoft.miniauth</groupId> <artifactId>miniauth-oauth</artifactId> <version>0.9.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.aerysoft.miniauth</groupId> <artifactId>miniauth-oauth2</artifactId> <version>0.9.5</version> <scope>compile</scope> </dependency> <!-- <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.3.1</version> <scope>compile</scope> </dependency> --> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-api</artifactId> <version>7.0.42</version> <scope>provided</scope> </dependency> <!-- <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> --> </dependencies> <build> <plugins> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.9</version> <executions> <execution> <id>site.project-website</id> <goals> <goal>site</goal> </goals> <phase>site</phase> <configuration> <message>Creating site for ${project.version}</message> <path>repo/miniauth-web</path> <merge>true</merge> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>