|
@@ -18,11 +18,36 @@
|
|
</properties>
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
|
|
+ <!-- spring -->
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
+ <scope>test</scope>
|
|
|
|
+ </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-autoconfigure</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
|
|
|
|
+ <!-- mysql -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.seamew</groupId>
|
|
|
|
+ <artifactId>db-router-spring-boot-starter</artifactId>
|
|
|
|
+ </dependency>
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
@@ -32,6 +57,7 @@
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
|
|
+ <!-- dubbo -->
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.apache.dubbo</groupId>
|
|
<groupId>org.apache.dubbo</groupId>
|
|
<artifactId>dubbo</artifactId>
|
|
<artifactId>dubbo</artifactId>
|
|
@@ -49,6 +75,7 @@
|
|
<artifactId>curator-recipes</artifactId>
|
|
<artifactId>curator-recipes</artifactId>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
|
|
+ <!-- 三方工具包 -->
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
@@ -57,19 +84,13 @@
|
|
<groupId>com.alibaba</groupId>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<artifactId>fastjson</artifactId>
|
|
</dependency>
|
|
</dependency>
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
- <scope>test</scope>
|
|
|
|
- </dependency>
|
|
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
-
|
|
|
|
|
|
+ <!-- 业务包 -->
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>com.seamew</groupId>
|
|
<groupId>com.seamew</groupId>
|
|
<artifactId>lottery-infrastructure</artifactId>
|
|
<artifactId>lottery-infrastructure</artifactId>
|
|
@@ -123,5 +144,4 @@
|
|
</plugin>
|
|
</plugin>
|
|
</plugins>
|
|
</plugins>
|
|
</build>
|
|
</build>
|
|
-
|
|
|
|
</project>
|
|
</project>
|