|
@@ -0,0 +1,122 @@
|
|
|
|
|
+<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/maven-v4_0_0.xsd">
|
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <groupId>com.ytpm</groupId>
|
|
|
|
|
+ <artifactId>yt_platform</artifactId>
|
|
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+
|
|
|
|
|
+ <name>yt-ios-lemon</name>
|
|
|
|
|
+ <artifactId>yt-ios-lemon</artifactId>
|
|
|
|
|
+ <packaging>pom</packaging>
|
|
|
|
|
+ <description>IOS青柠檬记账</description>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <modules>
|
|
|
|
|
+ <module>lemon-ios-feign</module>
|
|
|
|
|
+ <module>lemon-ios-service</module>
|
|
|
|
|
+ </modules>
|
|
|
|
|
+
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
|
+ <version>1.4.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <artifactId>jsr305</artifactId>
|
|
|
|
|
+ <groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--Spring Cloud Alibaba-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--database-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <artifactId>jsqlparser</artifactId>
|
|
|
|
|
+ <groupId>com.github.jsqlparser</groupId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.ytpm</groupId>
|
|
|
|
|
+ <artifactId>yt-common</artifactId>
|
|
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <artifactId>jsqlparser</artifactId>
|
|
|
|
|
+ <groupId>com.github.jsqlparser</groupId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <artifactId>jsr305</artifactId>
|
|
|
|
|
+ <groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-oauth2</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+</project>
|