forked from jitsi/jitsi-xmpp-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
150 lines (139 loc) · 8.02 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
<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>
<groupId>org.jitsi</groupId>
<artifactId>jitsi-xmpp-extensions</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<smack.version>4.2.4-47d17fc</smack.version>
</properties>
<name>jitsi-xmpp-extensions</name>
<url>https://github.com/jitsi/jitsi-xmpp-extensions</url>
<dependencies>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-core</artifactId>
<version>${smack.version}</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<!-- It appears that smack-core needs the base64 encoder to be set,
and this fails to happen unless we include smack-java7. -->
<artifactId>smack-java7</artifactId>
<version>${smack.version}</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-extensions</artifactId>
<version>${smack.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jitsi-utils</artifactId>
<version>1.0-0-g49ed569</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.9</version>
</dependency>
<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<includes>
<include>**/*TestSuite.*</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgs>
<arg>-Xlint:all</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.0.1</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Bundle-Version>${pom.version}</Bundle-Version>
<Manifest-Version>1.0</Manifest-Version>
<Bundle-SymbolicName>org.jitsi.xmpp-extensions</Bundle-SymbolicName>
<Built-By>maven</Built-By>
<Bnd-LastModified>1613417770890</Bnd-LastModified>
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
<Import-Package>org.apache.commons.lang3;version="[3.9,4)",org.jitsi.utils;version="[1.0,2)",org.jitsi.utils.logging;version="[1.0,2)",org.jitsi.xmpp.extensions,org.jitsi.xmpp.extensions.colibri,org.jitsi.xmpp.extensions.condesc,org.jitsi.xmpp.extensions.health,org.jitsi.xmpp.extensions.jingle,org.jitsi.xmpp.extensions.jitsimeet,org.jivesoftware.smack;version="[4.2,5)",org.jivesoftware.smack.packet;version="[4.2,5)",org.jivesoftware.smack.provider;version="[4.2,5)",org.jivesoftware.smack.util;version="[4.2,5)",org.jivesoftware.smackx.bob;version="[4.2,5)",org.jivesoftware.smackx.si.packet;version="[4.2,5)",org.jivesoftware.smackx.xdata.packet;version="[4.2,5)",org.jivesoftware.smackx.xdata.provider;version="[4.2,5)",org.jxmpp.jid;version="[0.6,1)",org.jxmpp.jid.impl;version="[0.6,1)",org.jxmpp.jid.parts;version="[0.6,1)",org.jxmpp.stringprep;version="[0.6,1)",org.jxmpp.util;version="[0.6,1)",org.xmlpull.v1</Import-Package>
<Require-Capability>osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))"</Require-Capability>
<Tool>Bnd-3.0.0.201509101326</Tool>
<Export-Package>org.jitsi.xmpp.extensions;uses:="org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.util,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.coin;uses:="org.jitsi.xmpp.extensions,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.util,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.colibri;uses:="org.jitsi.xmpp.extensions,org.jitsi.xmpp.extensions.jingle,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jxmpp.jid,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.condesc;uses:="org.jitsi.xmpp.extensions,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.health;uses:="org.jitsi.xmpp.extensions,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.inputevt;uses:="org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.jibri;uses:="org.jitsi.xmpp.extensions,org.jitsi.xmpp.extensions.health,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jxmpp.jid,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.jingle;uses:="org.jitsi.utils,org.jitsi.xmpp.extensions,org.jitsi.xmpp.extensions.colibri,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jxmpp.jid,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.jingleinfo;uses:="org.jitsi.xmpp.extensions,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.jitsimeet;uses:="org.jitsi.utils.logging,org.jitsi.xmpp.extensions,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jxmpp.jid,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.rayo;uses:="org.jitsi.xmpp.extensions,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jxmpp.jid,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.thumbnail;uses:="org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.bob,org.jivesoftware.smackx.si.packet,org.xmlpull.v1";version="1.0.0",org.jitsi.xmpp.extensions.vcardavatar;uses:="org.jivesoftware.smack,org.jivesoftware.smack.packet";version="1.0.0"</Export-Package>
<Bundle-Name>jitsi-xmpp-extensions</Bundle-Name>
<Bundle-Version>${pom.version}</Bundle-Version>
<Created-By>Apache Maven Bundle Plugin</Created-By>
<Build-Jdk>1.8.0</Build-Jdk>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>jitsi-maven-repository-releases</id>
<layout>default</layout>
<name>Jitsi Maven Repository (Releases)</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>https://github.com/jitsi/jitsi-maven-repository/raw/master/releases/</url>
</repository>
<repository>
<id>jitsi-maven-repository-snapshots</id>
<layout>default</layout>
<name>Jitsi Maven Repository (Snapshots)</name>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>https://github.com/jitsi/jitsi-maven-repository/raw/master/snapshots/</url>
</repository>
</repositories>
</project>