123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.2.1.RELEASE</version>
- <!--<version>2.0.4.RELEASE</version>-->
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>com.allpay</groupId>
- <artifactId>charge</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>charge</name>
- <description>Allpay charge</description>
- <properties>
- <java.version>1.8</java.version>
- <spring-security-oauth.version>2.0.16.RELEASE</spring-security-oauth.version>
- <spring-security-jwt.version>1.0.9.RELEASE</spring-security-jwt.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <scope>runtime</scope>
- <version>8.0.18</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.49</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- spring-security-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-security</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.security.oauth</groupId>
- <artifactId>spring-security-oauth2</artifactId>
- <version>${spring-security-oauth.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-jwt</artifactId>
- <version>${spring-security-jwt.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>4.6.1</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.6</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>org.junit.vintage</groupId>
- <artifactId>junit-vintage-engine</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.17</version>
- <type>jar</type>
- </dependency>
- <dependency>
- <groupId>org.json</groupId>
- <artifactId>json</artifactId>
- <version>20180813</version>
- <type>jar</type>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>org.eclipse.persistence</groupId>-->
- <!--<artifactId>org.eclipse.persistence.core</artifactId>-->
- <!--<version>2.5.2</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.eclipse.persistence</groupId>-->
- <!--<artifactId>org.eclipse.persistence.asm</artifactId>-->
- <!--<version>2.5.2</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.eclipse.persistence</groupId>-->
- <!--<artifactId>org.eclipse.persistence.antlr</artifactId>-->
- <!--<version>2.5.2</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>org.eclipse.persistence</groupId>
- <artifactId>org.eclipse.persistence.jpa</artifactId>
- <version>2.5.2</version>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>org.eclipse.persistence</groupId>-->
- <!--<artifactId>org.eclipse.persistence.jpa.jpql</artifactId>-->
- <!--<version>2.5.2</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>org.eclipse.persistence</groupId>
- <artifactId>javax.persistence</artifactId>
- <version>2.1.0</version>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>org.eclipse.persistence</groupId>-->
- <!--<artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>-->
- <!--<version>2.5.2</version>-->
- <!--<scope>provided</scope>-->
- <!--</dependency>-->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|