刘洪青 | 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-system-domain</artifactId> |
| 15 | <version>0.0.1-SNAPSHOT</version> |
| 16 | <packaging>jar</packaging> |
| 17 | |
| 18 | <name>Supwisdom Backend Framework System Domain</name> |
| 19 | <description>Supwisdom Backend Framework System Domain 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 | |
| 30 | <dependency> |
| 31 | <groupId>com.supwisdom.institute</groupId> |
| 32 | <artifactId>sw-backend-common-core</artifactId> |
| 33 | <version>${project.version}</version> |
| 34 | </dependency> |
| 35 | |
| 36 | <dependency> |
| 37 | <groupId>com.supwisdom.institute</groupId> |
| 38 | <artifactId>sw-backend-common-utils</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>com.supwisdom.institute</groupId> |
| 44 | <artifactId>sw-backend-common-framework</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>org.springframework.boot</groupId> |
| 51 | <artifactId>spring-boot-starter</artifactId> |
| 52 | </dependency> |
| 53 | |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>com.supwisdom.infras</groupId> |
| 57 | <artifactId>infras-data-jpa</artifactId> |
| 58 | </dependency> |
| 59 | |
| 60 | |
| 61 | <dependency> |
| 62 | <groupId>org.springframework.boot</groupId> |
| 63 | <artifactId>spring-boot-starter-test</artifactId> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
| 66 | |
| 67 | </dependencies> |
| 68 | |
| 69 | <build> |
| 70 | <plugins> |
| 71 | <plugin> |
| 72 | <groupId>org.apache.maven.plugins</groupId> |
| 73 | <artifactId>maven-compiler-plugin</artifactId> |
| 74 | </plugin> |
| 75 | <plugin> |
| 76 | <groupId>org.apache.maven.plugins</groupId> |
| 77 | <artifactId>maven-javadoc-plugin</artifactId> |
| 78 | </plugin> |
| 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-release-plugin</artifactId> |
| 82 | </plugin> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.maven.plugins</groupId> |
| 85 | <artifactId>maven-surefire-plugin</artifactId> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <groupId>org.apache.maven.plugins</groupId> |
| 89 | <artifactId>maven-failsafe-plugin</artifactId> |
| 90 | </plugin> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.maven.plugins</groupId> |
| 93 | <artifactId>maven-jar-plugin</artifactId> |
| 94 | </plugin> |
| 95 | <plugin> |
| 96 | <groupId>org.jacoco</groupId> |
| 97 | <artifactId>jacoco-maven-plugin</artifactId> |
| 98 | </plugin> |
| 99 | </plugins> |
| 100 | </build> |
| 101 | |
| 102 | </project> |