-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
98 lines (86 loc) · 3.31 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>tigase</groupId>
<artifactId>tigase-projects-parent</artifactId>
<version>1.0.4</version>
<relativePath />
</parent>
<properties>
<license.inlineHeader>${inlineHeader_agpl3}</license.inlineHeader>
<guide_name>Tigase_Database_Migrator</guide_name>
<documentation_phases.all_converters>generate-resources</documentation_phases.all_converters>
</properties>
<artifactId>tigase-database-migrator</artifactId>
<version>1.2.0-SNAPSHOT</version>
<packaging>bundle</packaging>
<inceptionYear>2018</inceptionYear>
<name>Tigase Database Migrator</name>
<description>Component responsible for migrating data from other XMPP servers</description>
<licenses>
<license>
<name>GNU Affero General Public License</name>
<url>http://www.gnu.org/licenses/agpl.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:${scm_repo_base}/tigase-database-migrator.git</connection>
<developerConnection>scm:git:${scm_repo_base}/tigase-database-migrator.git</developerConnection>
<url>${scm_repo_base}/tigase-database-migrator.git</url>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions combine.inherited="append">
<Bundle-Activator>tigase.db.converter.Activator</Bundle-Activator>
<Export-Package>tigase.db.converter.*</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>tigase</groupId>
<artifactId>tigase-server</artifactId>
<version>8.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.28</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.2.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.3.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.12.1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>tigase</id>
<url>https://maven-repo.tigase.org/repository/tigase</url>
</repository>
</repositories>
</project>