123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?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>
- <groupId>rock.star.idea</groupId>
- <artifactId>rock-star-idea</artifactId>
- <version>0.1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>pro-main</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <!-- 工程依赖 -->
- <dependency>
- <groupId>com.rockstar.anticontrol</groupId>
- <artifactId>rock-frame</artifactId>
- </dependency>
- <dependency>
- <groupId>com.rockstar.anticontrol</groupId>
- <artifactId>rock-system</artifactId>
- </dependency>
- <dependency>
- <groupId>com.rockstar.anticontrol</groupId>
- <artifactId>rock-user</artifactId>
- </dependency>
- <dependency>
- <groupId>com.rockstar.anticontrol</groupId>
- <artifactId>rock-wx</artifactId>
- </dependency>
- <dependency>
- <groupId>rock.star.idea</groupId>
- <artifactId>pro-base</artifactId>
- </dependency>
- <dependency>
- <groupId>rock.star.idea</groupId>
- <artifactId>pro-wx</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.kafka</groupId>-->
- <!-- <artifactId>spring-kafka</artifactId>-->
- <!-- <version>2.4.3.RELEASE</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.apache.kafka</groupId>-->
- <!-- <artifactId>kafka-clients</artifactId>-->
- <!-- <version>2.4.1</version>-->
- <!-- </dependency>-->
- <!--主从库配置还需更新ops对应得数据库properties-->
- <!-- <dependency>-->
- <!-- <groupId>com.rockstar.anticontrol</groupId>-->
- <!-- <artifactId>rock-ops</artifactId>-->
- <!-- </dependency>-->
- <!--工作流和tkmybatis冲突,先注释-->
- <!-- <dependency>-->
- <!-- <groupId>com.rockstar.anticontrol</groupId>-->
- <!-- <artifactId>rock-flow</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>rock.star.idea</groupId>-->
- <!-- <artifactId>pro-search</artifactId>-->
- <!-- </dependency>-->
- <!-- springframework -->
- <!-- configuration -->
- <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-devtools</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- aop -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <!-- SpringBoot Web容器 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>tk.mybatis</groupId>-->
- <!-- <artifactId>mapper-spring-boot-starter</artifactId>-->
- <!-- <version>${tkmybatis}</version>-->
- <!-- <!– activiti默认使用JPA, tk的实现会出现问题,具体原因自行了解 –>-->
- <!-- <exclusions>-->
- <!-- <exclusion>-->
- <!-- <artifactId>persistence-api</artifactId>-->
- <!-- <groupId>javax.persistence</groupId>-->
- <!-- </exclusion>-->
- <!-- </exclusions>-->
- <!-- </dependency>-->
- <!--没有会引起mybaits plus通用mapper和activity的冲突-->
- <!-- <dependency>-->
- <!-- <groupId>org.activiti</groupId>-->
- <!-- <artifactId>activiti-spring-boot-starter-jpa</artifactId>-->
- <!-- <version>${activiti.version}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
- <!-- <version>2.2.6.RELEASE</version>-->
- <!-- </dependency>-->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|