| | |
| | | <packaging>pom</packaging> |
| | | <version>1.0-SNAPSHOT</version> |
| | | |
| | | <parent> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-parent</artifactId> |
| | | <version>2.7.1</version> |
| | | </parent> |
| | | |
| | | <modules> |
| | | <module>goal-manage/goal-manage-service</module> |
| | | <module>goal-manage/goal-manage-rpc-provider</module> |
| | |
| | | <com.alibaba.cloud.version>2.2.8.RELEASE</com.alibaba.cloud.version> |
| | | <jta.starter.version>2.7.1</jta.starter.version> |
| | | <commons.utils.version>1.9.4</commons.utils.version> |
| | | <redission.version>3.17.4</redission.version> |
| | | </properties> |
| | | |
| | | <parent> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-parent</artifactId> |
| | | <version>2.6.7</version> |
| | | </parent> |
| | | |
| | | <dependencyManagement> |
| | | <dependencies> |
| | |
| | | <version>${commons.utils.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.redisson</groupId> |
| | | <artifactId>redisson-spring-boot-starter</artifactId> |
| | | <version>${redission.version}</version> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | </dependencyManagement> |
| | | |
| | |
| | | <artifactId>spring-boot-starter-data-redis</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.redisson</groupId> |
| | | <artifactId>redisson-spring-boot-starter</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.aspectj</groupId> |
| | | <artifactId>aspectjweaver</artifactId> |
| | | <version>1.9.9.1</version> |
| | |
| | | |
| | | <build> |
| | | <plugins> |
| | | <!-- 修改打包插件 |
| | | 修改打包方式jar为pom后 |
| | | 默认打包方式为spring-boot-maven-plugin |
| | | 等到后期打包的时候他会一直提示你,你引入的依赖不存在 |
| | | --> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-compiler-plugin</artifactId> |
| | |
| | | <target>1.8</target> |
| | | </configuration> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-surefire-plugin</artifactId> |
| | | <configuration> |
| | | <skipTests>true</skipTests> <!--默认关掉单元测试 --> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |