|
19 | 19 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
20 | 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
21 | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | + <parent> |
| 23 | + <groupId>top.leafage</groupId> |
| 24 | + <artifactId>leafage-starter-parent</artifactId> |
| 25 | + <version>0.3.2</version> |
| 26 | + <relativePath/> <!-- lookup parent from repository --> |
| 27 | + </parent> |
22 | 28 |
|
23 | 29 | <groupId>io.leafage.basic</groupId> |
24 | 30 | <artifactId>leafage-basic</artifactId> |
|
28 | 34 | <name>leafage-basic</name> |
29 | 35 | <description>basic module of leafage</description> |
30 | 36 |
|
31 | | - <developers> |
32 | | - <developer> |
33 | | - <name>li wen qiang</name> |
34 | | - |
35 | | - </developer> |
36 | | - </developers> |
37 | | - |
38 | 37 | <properties> |
39 | 38 | <sonar.projectKey>little3201_leafage-basic</sonar.projectKey> |
40 | 39 | <sonar.organization>little3201</sonar.organization> |
41 | 40 | <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
| 41 | + |
| 42 | + <leafage-common.version>0.3.0</leafage-common.version> |
42 | 43 | </properties> |
43 | 44 |
|
| 45 | + <developers> |
| 46 | + <developer> |
| 47 | + <name>wq li</name> |
| 48 | + |
| 49 | + </developer> |
| 50 | + </developers> |
| 51 | + |
44 | 52 | <modules> |
45 | 53 | <module>hypervisor</module> |
46 | 54 | <module>assets</module> |
47 | 55 | </modules> |
48 | 56 |
|
| 57 | + <dependencyManagement> |
| 58 | + <dependencies> |
| 59 | + <dependency> |
| 60 | + <groupId>top.leafage</groupId> |
| 61 | + <artifactId>leafage-common</artifactId> |
| 62 | + <version>${leafage-common.version}</version> |
| 63 | + </dependency> |
| 64 | + </dependencies> |
| 65 | + </dependencyManagement> |
| 66 | + |
| 67 | + <build> |
| 68 | + <plugins> |
| 69 | + <plugin> |
| 70 | + <groupId>org.springframework.boot</groupId> |
| 71 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 72 | + </plugin> |
| 73 | + <plugin> |
| 74 | + <groupId>org.sonarsource.scanner.maven</groupId> |
| 75 | + <artifactId>sonar-maven-plugin</artifactId> |
| 76 | + </plugin> |
| 77 | + </plugins> |
| 78 | + </build> |
| 79 | + |
49 | 80 | </project> |
0 commit comments