-
Notifications
You must be signed in to change notification settings - Fork 99
/
pom.xml
94 lines (84 loc) · 3.54 KB
/
pom.xml
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
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.risesoft</groupId>
<artifactId>y9-digitalbase</artifactId>
<version>v9.6.8-SNAPSHOT</version>
<relativePath/>
</parent>
<artifactId>y9-flowable</artifactId>
<packaging>pom</packaging>
<name>y9-flowable</name>
<version>${revision}</version>
<description>RiseSoft/WorkFlow Engine parent pom.xml file</description>
<url>https://gitee.com/risesoft-y9/y9-flowable/tree/main/</url>
<licenses>
<license>
<name>GNU General Public License (GPL) version 3.0</name>
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>${gitee.url}</url>
<connection>${gitee.connection}</connection>
<developerConnection>${gitee.developerConnection}</developerConnection>
</scm>
<developers>
<developer>
<name>qinman</name>
<email>[email protected]</email>
<organization>risesoft</organization>
<organizationUrl>https://www.risesoft.net</organizationUrl>
</developer>
<developer>
<name>yihong</name>
<email>[email protected]</email>
<organization>risesoft</organization>
<organizationUrl>https://www.risesoft.net</organizationUrl>
</developer>
<developer>
<name>zhangchongjie</name>
<email>[email protected]</email>
<organization>risesoft</organization>
<organizationUrl>https://www.risesoft.net</organizationUrl>
</developer>
</developers>
<properties>
<gitee.url>https://gitee.com/risesoft-y9/y9-flowable</gitee.url>
<gitee.connection>scm:git:https://gitee.com/risesoft-y9/y9-flowable.git</gitee.connection>
<gitee.developerConnection>scm:git:https://gitee.com/risesoft-y9/y9-flowable.git</gitee.developerConnection>
<revision>v9.6.8-SNAPSHOT</revision>
</properties>
<modules>
<module>y9-module-processadmin</module>
<module>y9-module-itemadmin</module>
<module>y9-module-jodconverter</module>
<module>y9-module-flowableui</module>
</modules>
<profiles>
<profile>
<id>deploy-maven-central</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<configuration>
<excludeArtifacts>
<artifact>y9-module-flowableui</artifact>
<artifact>risenet-y9boot-webapp-flowableui</artifact>
<artifact>y9-module-jodconverter</artifact>
<artifact>risenet-y9boot-webapp-jodconverter</artifact>
<artifact>risenet-y9boot-webapp-processadmin</artifact>
<artifact>risenet-y9boot-webapp-itemadmin</artifact>
</excludeArtifacts>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>