-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
146 lines (133 loc) · 4.9 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
<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.7-SNAPSHOT</version>
<relativePath />
</parent>
<properties>
<license.inlineHeader>${inlineHeader_agpl3}</license.inlineHeader>
<guide_name>Tigase_MIX</guide_name>
<documentation_phases.all_converters>generate-resources</documentation_phases.all_converters>
</properties>
<artifactId>tigase-mix</artifactId>
<version>1.3.0-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>Tigase MIX</name>
<description>MIX component for Tigase</description>
<inceptionYear>2020</inceptionYear>
<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_server_base}/${project.artifactId}.git</connection>
<developerConnection>scm:git:${scm_repo_server_base}/${project.artifactId}.git</developerConnection>
<url>${scm_repo_server_base}/${project.artifactId}</url>
<tag>HEAD</tag>
</scm>
<organization>
<name>Tigase</name>
<url>http://www.tigase.org</url>
</organization>
<profiles>
<profile>
<id>dist</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>dist</name>
</property>
</activation>
<properties>
<maven.javadoc.skip>false</maven.javadoc.skip>
<guide_name>Tigase_MIX</guide_name>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<executions>
<execution>
<id>output-html</id>
</execution>
<execution>
<id>output-docbook</id>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.agilejava.docbkx</groupId>
<artifactId>docbkx-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-webhelp</id>
</execution>
<execution>
<id>generate-pdf</id>
</execution>
<execution>
<id>generate-html</id>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>tigase</groupId>
<artifactId>tigase-server</artifactId>
<version>8.4.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>tigase</groupId>
<artifactId>tigase-server</artifactId>
<version>8.4.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>tigase</groupId>
<artifactId>tigase-pubsub</artifactId>
<version>5.3.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.28</version>
<scope>test</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>