刘洪青 | e071d36 | 2019-08-16 09:39:49 +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-parent</artifactId> |
| 9 | <version>0.0.1-SNAPSHOT</version> |
| 10 | <relativePath>../../</relativePath> |
| 11 | </parent> |
| 12 | |
| 13 | <groupId>com.supwisdom.institute</groupId> |
| 14 | <artifactId>sw-backend-common-framework</artifactId> |
| 15 | <version>0.0.1-SNAPSHOT</version> |
| 16 | <packaging>jar</packaging> |
| 17 | |
| 18 | <name>Supwisdom Backend Framework Common Framework</name> |
| 19 | <description>Supwisdom Backend Framework Common Framework 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>com.supwisdom.institute</groupId> |
| 31 | <artifactId>sw-backend-common-core</artifactId> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>com.supwisdom.institute</groupId> |
| 35 | <artifactId>sw-backend-common-utils</artifactId> |
| 36 | </dependency> |
| 37 | |
| 38 | |
| 39 | <dependency> |
| 40 | <groupId>org.apache.commons</groupId> |
| 41 | <artifactId>commons-lang3</artifactId> |
| 42 | </dependency> |
| 43 | |
| 44 | |
| 45 | <dependency> |
| 46 | <groupId>org.springframework.boot</groupId> |
| 47 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 48 | <optional>true</optional> |
| 49 | </dependency> |
| 50 | |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>io.springfox</groupId> |
| 54 | <artifactId>springfox-swagger2</artifactId> |
| 55 | </dependency> |
| 56 | |
| 57 | </dependencies> |
| 58 | |
| 59 | <build> |
| 60 | <plugins> |
| 61 | <plugin> |
| 62 | <groupId>org.apache.maven.plugins</groupId> |
| 63 | <artifactId>maven-compiler-plugin</artifactId> |
| 64 | </plugin> |
| 65 | <plugin> |
| 66 | <groupId>org.apache.maven.plugins</groupId> |
| 67 | <artifactId>maven-javadoc-plugin</artifactId> |
| 68 | </plugin> |
| 69 | <plugin> |
| 70 | <groupId>org.apache.maven.plugins</groupId> |
| 71 | <artifactId>maven-release-plugin</artifactId> |
| 72 | </plugin> |
| 73 | <plugin> |
| 74 | <groupId>org.apache.maven.plugins</groupId> |
| 75 | <artifactId>maven-surefire-plugin</artifactId> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </build> |
| 79 | |
| 80 | </project> |