|
|
@@ -10,12 +10,96 @@
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<artifactId>sale-server</artifactId>
|
|
|
+
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>com.usoftchina.saas</groupId>
|
|
|
<artifactId>sale-dto</artifactId>
|
|
|
</dependency>
|
|
|
- </dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.usoftchina.saas</groupId>
|
|
|
+ <artifactId>storage-dto</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.usoftchina.saas</groupId>
|
|
|
+ <artifactId>purchase-dto</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.usoftchina.saas</groupId>
|
|
|
+ <artifactId>document-api</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.usoftchina.saas</groupId>
|
|
|
+ <artifactId>auth-client</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.usoftchina.saas</groupId>
|
|
|
+ <artifactId>server-starter</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--test-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.usoftchina.saas</groupId>
|
|
|
+ <artifactId>test-starter</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- db -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!-- sleuth -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-zipkin</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.amqp</groupId>
|
|
|
+ <artifactId>spring-rabbit</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.logstash.logback</groupId>
|
|
|
+ <artifactId>logstash-logback-encoder</artifactId>
|
|
|
+ </dependency>
|
|
|
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!-- feign -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.usoftchina.saas</groupId>
|
|
|
+ <artifactId>commons-dto</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.usoftchina.saas</groupId>
|
|
|
+ <artifactId>commons-api</artifactId>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>com.spotify</groupId>
|
|
|
+ <artifactId>docker-maven-plugin</artifactId>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
</project>
|