刘洪青 | ffe2f41 | 2019-10-11 10:25:26 +0800 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <parent> |
| 7 | <groupId>com.supwisdom.institute</groupId> |
| 8 | <artifactId>sw-backend-thirdparty-agent-parent</artifactId> |
| 9 | <version>0.0.2-SNAPSHOT</version> |
| 10 | </parent> |
| 11 | |
| 12 | <groupId>com.supwisdom.institute</groupId> |
| 13 | <artifactId>sw-backend-thirdparty-agent</artifactId> |
| 14 | <version>0.0.2-SNAPSHOT</version> |
| 15 | <packaging>jar</packaging> |
| 16 | |
| 17 | <name>Supwisdom Backend Framework Third Party Agent</name> |
| 18 | <description>Supwisdom Backend Framework Third Party Agent project</description> |
| 19 | |
| 20 | <properties> |
| 21 | <start-class>com.supwisdom.institute.backend.thirdparty.agent.Application</start-class> |
| 22 | </properties> |
| 23 | |
| 24 | <dependencies> |
| 25 | |
| 26 | <dependency> |
| 27 | <groupId>org.springframework.boot</groupId> |
| 28 | <artifactId>spring-boot-starter</artifactId> |
| 29 | </dependency> |
| 30 | |
| 31 | <!-- 微服务 健康监控 --> |
| 32 | <dependency> |
| 33 | <groupId>org.springframework.boot</groupId> |
| 34 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 35 | </dependency> |
| 36 | |
| 37 | <dependency> |
| 38 | <groupId>org.springframework.boot</groupId> |
| 39 | <artifactId>spring-boot-starter-web</artifactId> |
| 40 | </dependency> |
| 41 | |
| 42 | |
| 43 | <dependency> |
| 44 | <groupId>com.supwisdom.institute</groupId> |
| 45 | <artifactId>sw-backend-thirdparty-poa</artifactId> |
| 46 | </dependency> |
| 47 | |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>io.springfox</groupId> |
| 51 | <artifactId>springfox-swagger2</artifactId> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>io.springfox</groupId> |
| 55 | <artifactId>springfox-swagger-ui</artifactId> |
| 56 | </dependency> |
| 57 | |
| 58 | |
| 59 | <!-- 热部署,无需重启项目 --> |
| 60 | <dependency> |
| 61 | <groupId>org.springframework.boot</groupId> |
| 62 | <artifactId>spring-boot-devtools</artifactId> |
| 63 | <scope>runtime</scope> |
| 64 | </dependency> |
| 65 | |
| 66 | |
| 67 | <dependency> |
| 68 | <groupId>org.springframework.boot</groupId> |
| 69 | <artifactId>spring-boot-starter-test</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | |
| 73 | </dependencies> |
| 74 | |
| 75 | <build> |
| 76 | <finalName>${project.artifactId}</finalName> |
| 77 | |
| 78 | <plugins> |
| 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-compiler-plugin</artifactId> |
| 82 | </plugin> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.maven.plugins</groupId> |
| 85 | <artifactId>maven-failsafe-plugin</artifactId> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <groupId>org.apache.maven.plugins</groupId> |
| 89 | <artifactId>maven-javadoc-plugin</artifactId> |
| 90 | </plugin> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.maven.plugins</groupId> |
| 93 | <artifactId>maven-release-plugin</artifactId> |
| 94 | </plugin> |
| 95 | <plugin> |
| 96 | <groupId>org.jacoco</groupId> |
| 97 | <artifactId>jacoco-maven-plugin</artifactId> |
| 98 | </plugin> |
| 99 | |
| 100 | <plugin> |
| 101 | <groupId>org.springframework.boot</groupId> |
| 102 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 103 | </plugin> |
| 104 | |
| 105 | <plugin> |
| 106 | <groupId>com.spotify</groupId> |
| 107 | <artifactId>dockerfile-maven-plugin</artifactId> |
| 108 | <configuration> |
| 109 | <skip>false</skip> |
| 110 | </configuration> |
| 111 | </plugin> |
| 112 | |
| 113 | </plugins> |
| 114 | |
| 115 | </build> |
| 116 | |
| 117 | </project> |