| | |
| | | <groupId>org.testng</groupId> |
| | | <artifactId>testng</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>commons-net</groupId> |
| | | <artifactId>commons-net</artifactId> |
| | | <version>3.1</version> |
| | | </dependency> |
| | | <!-- 二维码生成 --> |
| | | <dependency> |
| | | <groupId>com.google.zxing</groupId> |
| | | <artifactId>core</artifactId> |
| | | <version>3.3.3</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.google.zxing</groupId> |
| | | <artifactId>javase</artifactId> |
| | | <version>3.3.3</version> |
| | | </dependency> |
| | | <!-- https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j --> |
| | | <dependency> |
| | | <groupId>net.lingala.zip4j</groupId> |
| | | <artifactId>zip4j</artifactId> |
| | | <version>1.3.2</version> |
| | | </dependency> |
| | | <!-- https://mvnrepository.com/artifact/org.springframework/spring-mock --> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-mock</artifactId> |
| | | <version>2.0.8</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>net.sf.json-lib</groupId> |
| | | <artifactId>json-lib</artifactId> |
| | | <version>2.4</version> |
| | | <classifier>jdk15</classifier> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.opencsv</groupId> |
| | | <artifactId>opencsv</artifactId> |
| | | <version>3.3</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>net.sourceforge.javacsv</groupId> |
| | | <artifactId>javacsv</artifactId> |
| | | <version>2.0</version> |
| | | </dependency> |
| | | <!-- quartz 定时任务--> |
| | | <dependency> |
| | | <groupId>org.quartz-scheduler</groupId> |
| | | <artifactId>quartz</artifactId> |
| | | <version>2.3.2</version> |
| | | </dependency> |
| | | <!--springboot-quartz--> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-quartz</artifactId> |
| | | </dependency> |
| | | <!-- rabbitmq--> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-amqp</artifactId> |
| | | </dependency> |
| | | <!--ureport--> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>com.syyai.spring.boot</groupId>--> |
| | | <!-- <artifactId>ureport-spring-boot-starter</artifactId>--> |
| | | <!-- <version>2.2.9</version>--> |
| | | <!-- </dependency>--> |
| | | <dependency> |
| | | <groupId>redis.clients</groupId> |
| | | <artifactId>jedis</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>cn.hutool</groupId> |
| | | <artifactId>hutool-all</artifactId> |
| | | <version>5.7.16</version> |
| | | </dependency> |
| | | </dependencies> |
| | | <profiles> |
| | | <profile> |
| | | <id>dev</id> |
| | | <properties> |
| | | <profile.active>dev</profile.active> |
| | | </properties> |
| | | <activation> |
| | | <activeByDefault>true</activeByDefault> |
| | | </activation> |
| | | </profile> |
| | | <profile> |
| | | <id>test</id> |
| | | <properties> |
| | | <profile.active>test</profile.active> |
| | | </properties> |
| | | </profile> |
| | | <profile> |
| | | <id>prod</id> |
| | | <properties> |
| | | <profile.active>prod</profile.active> |
| | | </properties> |
| | | </profile> |
| | | </profiles> |
| | | |
| | | <build> |
| | | <finalName>${bladex.project.id}</finalName> |
| | |
| | | <include>**/*.xml</include> |
| | | </includes> |
| | | </resource> |
| | | <!-- 根据env部署环境值,把对应环境的配置文件拷贝到classes目录 --> |
| | | <resource> |
| | | <directory>src/main/resources/${profile.active}</directory> |
| | | <targetPath>${project.build.directory}/classes</targetPath> |
| | | <includes> |
| | | <include>**/*.*</include> |
| | | </includes> |
| | | <filtering>true</filtering> |
| | | </resource> |
| | | </resources> |
| | | <pluginManagement> |
| | | <plugins> |