| | |
| | | <relativePath/> |
| | | </parent> |
| | | |
| | | <groupId>com.lunhan.xxx</groupId> |
| | | <artifactId>xxx-yyy</artifactId> |
| | | <groupId>com.nanjing.water</groupId> |
| | | <artifactId>nanjing-station-service</artifactId> |
| | | <version>0.0.1-SNAPSHOT</version> |
| | | <name>xxx-yyy-service</name> |
| | | <description>The service which yyy of xxx project</description> |
| | | <name>nanjing-station-service</name> |
| | | <description>The service which name is nanjing-station of water</description> |
| | | |
| | | <properties> |
| | | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| | |
| | | </exclusions> |
| | | </dependency> |
| | | |
| | | <!-- 定时任务-xxl-job --> |
| | | <dependency> |
| | | <groupId>com.xuxueli</groupId> |
| | | <artifactId>xxl-job-core</artifactId> |
| | | <version>2.4.0</version> |
| | | </dependency> |
| | | |
| | | <!-- 加密算法库 --> |
| | | <dependency> |
| | | <groupId>org.bouncycastle</groupId> |
| | |
| | | <version>4.2.0</version> |
| | | <scope>test</scope> |
| | | </dependency> |
| | | |
| | | <!-- 操作jenkins --> |
| | | <dependency> |
| | | <groupId>io.github.cdancy</groupId> |
| | |
| | | <scope>test</scope> |
| | | </dependency> |
| | | |
| | | <!--quartz依赖--> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-quartz</artifactId> |
| | | <version>2.0.3.RELEASE</version> |
| | | </dependency> |
| | | <!-- mqtt 依赖 --> |
| | | <dependency> |
| | | <groupId>org.eclipse.paho</groupId> |
| | | <artifactId>org.eclipse.paho.client.mqttv3</artifactId> |
| | | <version>1.2.5</version> |
| | | </dependency> |
| | | <!--生成验证码工具--> |
| | | <dependency> |
| | | <groupId>com.github.whvcse</groupId> |
| | | <artifactId>easy-captcha</artifactId> |
| | | <version>1.6.2</version> |
| | | </dependency> |
| | | <!--************************************************** 单元测试相关 **************************************************--> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | |
| | | <package.buildName></package.buildName> |
| | | </properties> |
| | | </profile> |
| | | |
| | | <!-- 本地化部署环境 --> |
| | | <profile> |
| | | <id>local</id> |
| | | <properties> |
| | | <!-- 设置参数“package.environment”的值 --> |
| | | <package.environment>local</package.environment> |
| | | <package.buildName></package.buildName> |
| | | </properties> |
| | | </profile> |
| | | </profiles> |
| | | |
| | | <build> |