1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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>
- <artifactId>b2b2c</artifactId>
- <groupId>com.slodon</groupId>
- <version>3.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>b2b2c-captcha</artifactId>
- <packaging>jar</packaging>
- <properties>
- <java.version>1.8</java.version>
- <spring-boot.version>2.2.2.RELEASE</spring-boot.version>
- <bbc-core.version>3.0</bbc-core.version>
- </properties>
- <dependencies>
- <!-- local -->
- <dependency>
- <groupId>com.slodon</groupId>
- <artifactId>b2b2c-core</artifactId>
- <version>${bbc-core.version}</version>
- </dependency>
- <!-- web start -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.jhlabs</groupId>
- <artifactId>filters</artifactId>
- <version>2.0.235-1</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <!-- redis-starter -->
- <dependency>
- <groupId>com.slodon</groupId>
- <artifactId>redis-slodon-starter</artifactId>
- <version>3.0</version>
- </dependency>
- <!-- commons -->
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>1.10</version>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring-boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|