| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <artifactId>happy-boot-module-flexjob</artifactId>
- <version>2.1.0</version>
- <name>happywork</name>
- <parent>
- <artifactId>happy-boot-parent</artifactId>
- <groupId>org.jeecgframework.boot</groupId>
- <version>2.1.0</version>
- </parent>
- <repositories>
- <repository>
- <id>aliyun</id>
- <name>aliyun Repository</name>
- <url>http://maven.aliyun.com/nexus/content/groups/public</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>jeecg</id>
- <name>jeecg Repository</name>
- <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>happy-boot-module-system</artifactId>
- <version>2.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>happy-boot-module-common</artifactId>
- <version>2.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>happy-boot-module-pay</artifactId>
- <version>2.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>happy-boot-module-econtract</artifactId>
- <version>2.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>happy-boot-module-settlement</artifactId>
- <version>2.1.0</version>
- </dependency>
- <!--腾讯云sdk-->
- <dependency>
- <groupId>com.tencentcloudapi</groupId>
- <artifactId>tencentcloud-sdk-java</artifactId>
- <!-- 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询最新版本 -->
- <version>3.1.89</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>happywork</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|