| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <?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/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-web-parent</artifactId>
- <version>4.3.7</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>vertx-web</artifactId>
- <licenses>
- <license>
- <name>The Apache Software License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- </license>
- <license>
- <name>Eclipse Public License - v 2.0</name>
- <url>http://www.eclipse.org/legal/epl-v20.html</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <properties>
- <doc.skip>false</doc.skip>
- </properties>
- <dependencies>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-web-common</artifactId>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-auth-common</artifactId>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-bridge-common</artifactId>
- </dependency>
- <!--
- These should be optional so they're not dragged into web applications unless they're explicitly declared
- -->
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-auth-jwt</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-auth-oauth2</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-auth-htdigest</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-auth-webauthn</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-auth-otp</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- Testing -->
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-unit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-auth-properties</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.21</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <version>2.22.0</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven.compiler.plugin.version}</version>
- <configuration>
- <compilerArgument>-Xlint:all</compilerArgument>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>io/vertx/ext/web/it/**/*.java</exclude>
- </excludes>
- <classpathDependencyExcludes>
- <classpathDependencyExclude>com.fasterxml.jackson.core:jackson-databind</classpathDependencyExclude>
- </classpathDependencyExcludes>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-failsafe-plugin</artifactId>
- <version>2.19.1</version>
- <executions>
- <execution>
- <id>databind-itest</id>
- <goals>
- <goal>integration-test</goal>
- <goal>verify</goal>
- </goals>
- <configuration>
- <includes>
- <include>io/vertx/ext/web/it/RoutingContextDatabindTest.java</include>
- </includes>
- </configuration>
- </execution>
- <execution>
- <id>router-extended-param-itest</id>
- <goals>
- <goal>integration-test</goal>
- <goal>verify</goal>
- </goals>
- <configuration>
- <systemProperties>
- <io.vertx.web.route.param.extended-pattern>true</io.vertx.web.route.param.extended-pattern>
- </systemProperties>
- <includes>
- <include>io/vertx/ext/web/it/RouterExtendedParamTest.java</include>
- </includes>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|