刘洪青 | 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-admin-sa-parent</artifactId> |
| 9 | <version>0.0.2-SNAPSHOT</version> |
| 10 | <relativePath>../../</relativePath> |
| 11 | </parent> |
| 12 | |
| 13 | <groupId>com.supwisdom.institute</groupId> |
| 14 | <artifactId>sw-backend-admin-base-api</artifactId> |
| 15 | <version>0.0.2-SNAPSHOT</version> |
| 16 | <packaging>jar</packaging> |
| 17 | |
| 18 | <name>Supwisdom Backend Framework Admin Base API</name> |
| 19 | <description>Supwisdom Backend Framework Admin Base API project</description> |
| 20 | |
| 21 | <dependencies> |
| 22 | |
| 23 | <dependency> |
| 24 | <groupId>org.projectlombok</groupId> |
| 25 | <artifactId>lombok</artifactId> |
| 26 | <scope>provided</scope> |
| 27 | </dependency> |
| 28 | |
| 29 | <dependency> |
| 30 | <groupId>javax.servlet</groupId> |
| 31 | <artifactId>javax.servlet-api</artifactId> |
| 32 | <scope>provided</scope> |
| 33 | </dependency> |
| 34 | |
| 35 | |
| 36 | <dependency> |
| 37 | <groupId>org.springframework.boot</groupId> |
| 38 | <artifactId>spring-boot-starter</artifactId> |
| 39 | </dependency> |
| 40 | |
| 41 | <dependency> |
| 42 | <groupId>org.springframework.boot</groupId> |
| 43 | <artifactId>spring-boot-starter-web</artifactId> |
| 44 | </dependency> |
| 45 | |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>com.supwisdom.institute</groupId> |
| 49 | <artifactId>sw-backend-common-core</artifactId> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>com.supwisdom.institute</groupId> |
| 54 | <artifactId>sw-backend-common-utils</artifactId> |
| 55 | </dependency> |
| 56 | |
| 57 | <dependency> |
| 58 | <groupId>com.supwisdom.institute</groupId> |
| 59 | <artifactId>sw-backend-common-framework</artifactId> |
| 60 | </dependency> |
| 61 | |
| 62 | |
| 63 | <dependency> |
| 64 | <groupId>com.supwisdom.institute</groupId> |
| 65 | <artifactId>sw-backend-admin-base-domain</artifactId> |
| 66 | </dependency> |
| 67 | |
| 68 | |
| 69 | <dependency> |
| 70 | <groupId>org.springframework.boot</groupId> |
| 71 | <artifactId>spring-boot-starter-test</artifactId> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | |
| 75 | </dependencies> |
| 76 | |
| 77 | <build> |
| 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-javadoc-plugin</artifactId> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <groupId>org.apache.maven.plugins</groupId> |
| 89 | <artifactId>maven-release-plugin</artifactId> |
| 90 | </plugin> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.maven.plugins</groupId> |
| 93 | <artifactId>maven-surefire-plugin</artifactId> |
| 94 | </plugin> |
| 95 | <plugin> |
| 96 | <groupId>org.apache.maven.plugins</groupId> |
| 97 | <artifactId>maven-failsafe-plugin</artifactId> |
| 98 | </plugin> |
| 99 | <plugin> |
| 100 | <groupId>org.apache.maven.plugins</groupId> |
| 101 | <artifactId>maven-jar-plugin</artifactId> |
| 102 | </plugin> |
| 103 | <plugin> |
| 104 | <groupId>org.jacoco</groupId> |
| 105 | <artifactId>jacoco-maven-plugin</artifactId> |
| 106 | </plugin> |
| 107 | </plugins> |
| 108 | </build> |
| 109 | |
| 110 | </project> |