-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
155 lines (155 loc) · 6.66 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?xml version="1.0" encoding="UTF-8"?>
<!--
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
<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>
<parent>
<groupId>com.xwiki.parent</groupId>
<artifactId>xwikisas-parent-platform-distribution</artifactId>
<version>14.10-1</version>
</parent>
<groupId>com.xwiki.confluence</groupId>
<artifactId>confluence-migration-package</artifactId>
<version>1.0.24-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Confluence Migration Toolkit - Parent POM</name>
<properties>
<licensing.version>1.27</licensing.version>
<confluence-migrator.version>1.31.1</confluence-migrator.version>
<pro-macros.version>1.26.4</pro-macros.version>
<task-manager.version>3.6.8</task-manager.version>
<blog-application.version>9.13.11</blog-application.version>
<macro-pdf.version>2.6.1</macro-pdf.version>
<xwiki-pro.version>13.13.0</xwiki-pro.version>
<confluence-xml.version>9.79.1</confluence-xml.version>
<macrofullcalendar.version>2.4.0</macrofullcalendar.version>
<!-- Needed for Latex dependency coming from XWiki Pro -->
<dockerJava.version>3.3.6</dockerJava.version>
<!-- Remove after XWiki Pro will not depend on the legacy module of pro macros anymore. -->
<xwiki.enforcer.no-legacy-dependencies.skip>true</xwiki.enforcer.no-legacy-dependencies.skip>
</properties>
<scm>
<connection>scm:git:git://github.com/xwikisas/confluence-migration-package.git</connection>
<developerConnection>scm:git:git@github.com:xwikisas/confluence-migration-package.git</developerConnection>
<url>https://github.com/xwikisas/confluence-migration-package/tree/main</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/xwikisas/confluence-migration-package/issues</url>
</issueManagement>
<modules>
<module>confluence-migration-package-ui</module>
<module>confluence-migration-package-xip</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- Needed because some pro apps depend on each other and the versions might not be synced with
the ones coming from confluence-migration-package. -->
<dependency>
<groupId>com.xwiki.task</groupId>
<artifactId>application-task-api</artifactId>
<version>${task-manager.version}</version>
</dependency>
<dependency>
<groupId>com.xwiki.task</groupId>
<artifactId>application-task-ui</artifactId>
<version>${task-manager.version}</version>
<type>xar</type>
</dependency>
<dependency>
<groupId>com.xwiki.pro</groupId>
<artifactId>xwiki-pro-macros-ui</artifactId>
<version>${pro-macros.version}</version>
<type>xar</type>
</dependency>
<dependency>
<groupId>org.xwiki.contrib</groupId>
<artifactId>macro-fullcalendar-api</artifactId>
<version>${macrofullcalendar.version}</version>
</dependency>
<dependency>
<groupId>org.xwiki.contrib</groupId>
<artifactId>macro-fullcalendar-ui</artifactId>
<version>${macrofullcalendar.version}</version>
<type>xar</type>
</dependency>
<dependency>
<groupId>org.xwiki.contrib.confluence</groupId>
<artifactId>confluence-resolvers</artifactId>
<version>${confluence-xml.version}</version>
</dependency>
<dependency>
<groupId>com.xwiki.date</groupId>
<artifactId>macro-date-api</artifactId>
<version>${task-manager.version}</version>
</dependency>
<dependency>
<groupId>com.xwiki.pdfviewer</groupId>
<artifactId>macro-pdfviewer-ui</artifactId>
<version>${macro-pdf.version}</version>
<type>xar</type>
</dependency>
<!-- This was added because latex app forces the usage of plexus-archiver v4.8.0 while the 13.10 platform is at a
different version. As of 15.7-rc-1, the platform uses 4.8.0. This dependency management block should be removed
when the pro apps depend on a version greater or equal to the aforementioned one. -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>4.8.0</version>
</dependency>
<dependency>
<groupId>org.xwiki.contrib.blog</groupId>
<artifactId>application-blog-ui</artifactId>
<version>${blog-application.version}</version>
<type>xar</type>
<scope>runtime</scope>
</dependency>
<!-- Needed for docker-java-transport-httpclient5 to work properly. Latex uses newer version. -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.13.0</version>
</dependency>
<dependency>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java-core</artifactId>
<version>${dockerJava.version}</version>
<exclusions>
<!-- Exclude dependencies since the version of XWiki specified in the platform parent POM can provide older
versions than the ones defined in docker-java -->
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java-transport-httpclient5</artifactId>
<version>${dockerJava.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>