| <?xml version="1.0"?> |
| <!-- |
| ~ Copyright (c) 2011-2014 The original author or authors |
| ~ |
| ~ All rights reserved. This program and the accompanying materials |
| ~ are made available under the terms of the Eclipse Public License v1.0 |
| ~ and Apache License v2.0 which accompanies this distribution. |
| ~ |
| ~ The Eclipse Public License is available at |
| ~ http://www.eclipse.org/legal/epl-v10.html |
| ~ |
| ~ The Apache License v2.0 is available at |
| ~ http://www.opensource.org/licenses/apache2.0.php |
| ~ |
| ~ You may elect to redistribute this code under either of these licenses. |
| --> |
| |
| <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> |
| |
| <packaging>pom</packaging> |
| |
| <modules> |
| <module>vertx-auth-common</module> |
| <module>vertx-auth-shiro</module> |
| <module>vertx-auth-jdbc</module> |
| <module>vertx-auth-mongo</module> |
| <module>vertx-jwt</module> |
| <module>vertx-auth-jwt</module> |
| <module>vertx-auth-oauth2</module> |
| <module>vertx-auth-htdigest</module> |
| </modules> |
| |
| <parent> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-ext-parent</artifactId> |
| <version>23</version> |
| </parent> |
| |
| <artifactId>vertx-auth</artifactId> |
| <version>3.4.0-SNAPSHOT</version> |
| |
| <name>Vert.x Auth</name> |
| |
| <properties> |
| <stack.version>3.4.0-SNAPSHOT</stack.version> |
| <doc.skip>true</doc.skip> |
| </properties> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-dependencies</artifactId> |
| <version>${stack.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-codegen</artifactId> |
| <scope>provided</scope> |
| <optional>true</optional> |
| </dependency> |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-docgen</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-codetrans</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-lang-groovy</artifactId> |
| <optional>true</optional> |
| </dependency> |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-lang-js</artifactId> |
| <optional>true</optional> |
| </dependency> |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-lang-ruby</artifactId> |
| <optional>true</optional> |
| </dependency> |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-lang-kotlin</artifactId> |
| <optional>true</optional> |
| </dependency> |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-rx-java</artifactId> |
| <optional>true</optional> |
| </dependency> |
| |
| <dependency> |
| <groupId>io.vertx</groupId> |
| <artifactId>vertx-core</artifactId> |
| <type>test-jar</type> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| <version>4.12</version> |
| </dependency> |
| </dependencies> |
| |
| </project> |