-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpom.xml
More file actions
111 lines (101 loc) · 3.3 KB
/
Copy pathpom.xml
File metadata and controls
111 lines (101 loc) · 3.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.workoss.boot</groupId>
<artifactId>boot</artifactId>
<packaging>pom</packaging>
<version>2023.2.1-SNAPSHOT</version>
<modules>
<module>boot-parent</module>
<module>boot-dependencies</module>
<module>boot-annotation</module>
<module>boot-util</module>
<module>boot-mybatis</module>
<module>boot-extension</module>
<module>boot-storage</module>
<module>boot-starter</module>
<module>boot-domain</module>
</modules>
<properties>
<maven-release-plugin.version>3.3.1</maven-release-plugin.version>
<spring-javaformat-maven-plugin.version>0.0.48</spring-javaformat-maven-plugin.version>
<license-maven-plugin.version>5.1.1</license-maven-plugin.version>
<versions-maven-plugin.version>2.21.0</versions-maven-plugin.version>
<flatten-maven-plugin.version>1.3.0</flatten-maven-plugin.version>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<scm>
<url>https://github.com/workoss/boot</url>
<connection>scm:git:git@github.com:workoss/boot.git</connection>
<developerConnection>scm:git:git@github.com:workoss/boot.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Github Issues</system>
<url>https://github.com/workoss/boot/issues</url>
</issueManagement>
<organization>
<name>Workoss Software, Inc.</name>
<url>https://www.workoss.com</url>
</organization>
<developers>
<developer>
<id>workoss</id>
<name>workoss</name>
<email>workoss@icloud.com</email>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<repositories>
<repository>
<id>alimaven</id>
<name>aliyun maven</name>
<url>https://maven.aliyun.com/repository/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>alimaven</id>
<name>aliyun maven</name>
<url>https://maven.aliyun.com/repository/public</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>v@{project.version}</tagNameFormat>
<generateReleasePoms>false</generateReleasePoms>
<arguments>-DskipTests</arguments>
</configuration>
</plugin>
<plugin>
<groupId>io.spring.javaformat</groupId>
<artifactId>spring-javaformat-maven-plugin</artifactId>
<version>${spring-javaformat-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${versions-maven-plugin.version}</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
</plugins>
</build>
</project>