blob: e8fd64d754416708efec50ebaea3597b5ccbfefd (
plain)
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
|
<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>org.jitsi</groupId>
<artifactId>jitsi-universe</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../../jitsi-universe/pom.xml</relativePath>
</parent>
<artifactId>jitsi</artifactId>
<version>2.9-SNAPSHOT</version>
<packaging>pom</packaging>
<name>jitsi</name>
<url>https://jitsi.org</url>
<modules>
<module>jitsi-configuration</module>
<module>jitsi-contactlist</module>
<module>jitsi-credentialsstorage</module>
<module>jitsi-dnsservice</module>
<module>jitsi-fileaccess</module>
<module>jitsi-netaddr</module>
<module>jitsi-packetlogging</module>
<module>jitsi-protocol</module>
<module>jitsi-protocol-jabber</module>
<module>jitsi-protocol-media</module>
<module>jitsi-resourcemanager</module>
<module>jitsi-ui-service</module>
<module>jitsi-util</module>
</modules>
<build>
<sourceDirectory>../../src</sourceDirectory>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*.manifest.mf</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</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>
|