generated from axonivy-market/market-product
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
57 lines (51 loc) · 2 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
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.axonivy.connector.office365</groupId>
<name>msgraph-connector</name>
<artifactId>msgraph-modules</artifactId>
<version>10.0.8-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>msgraph-oauth-feature</module>
<module>${project.name}</module>
<module>msgraph-mail-demo</module>
<module>msgraph-calendar-demo</module>
<module>msgraph-todo-demo</module>
<module>msgraph-sharepoint-demo</module>
<module>msgraph-teams-notification</module>
<module>msgraph-teams-demo</module>
<module>${project.name}-test</module>
<module>${project.name}-product</module>
<module>${project.name}-product/products/${project.name}</module>
<module>${project.name}-product/products/msgraph-calendar</module>
<module>${project.name}-product/products/msgraph-todo</module>
<module>${project.name}-product/products/msgraph-mail</module>
<module>${project.name}-product/products/msgraph-chat</module>
<module>${project.name}-app</module>
</modules>
<scm>
<developerConnection>scm:git:https://github.com/axonivy-market/${project.name}.git</developerConnection>
<tag>HEAD</tag>
</scm>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>