forked from Kurento/kurento-tutorial-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
96 lines (84 loc) · 2.78 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
<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.kurento</groupId>
<artifactId>kurento-parent-pom</artifactId>
<version>6.6.2</version>
</parent>
<groupId>org.kurento.tutorial</groupId>
<artifactId>kurento-tutorial</artifactId>
<packaging>pom</packaging>
<name>Kurento Java Client Tutorials</name>
<description>Sample projects</description>
<url>http://www.kurento.org/docs/${project.version}</url>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Kurento</name>
<url>http://www.kurento.org</url>
</organization>
<scm>
<url>https://github.com/Kurento/kurento-tutorial-java</url>
<connection>scm:git:https://github.com/Kurento/kurento-tutorial-java</connection>
<developerConnection>scm:git://[email protected]:Kurento/kurento-tutorial-java</developerConnection>
<tag>develop</tag>
</scm>
<developers>
<developer>
<id>kurento.org</id>
<name>-kurento.org Community</name>
<organization>Kurento.org</organization>
<organizationUrl>http://www.kurento.org</organizationUrl>
</developer>
</developers>
<properties>
<version.kurento-datachannelexample>6.6.0</version.kurento-datachannelexample>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.kurento.module</groupId>
<artifactId>datachannelexample</artifactId>
<version>${version.kurento-datachannelexample}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>kurento-hello-world</module>
<module>kurento-magic-mirror</module>
<module>kurento-one2one-call</module>
<module>kurento-one2one-call-advanced</module>
<module>kurento-one2one-call-recording</module>
<module>kurento-one2many-call</module>
<module>kurento-group-call</module>
<module>kurento-hello-world-recording</module>
<module>kurento-hello-world-repository</module>
<module>kurento-platedetector</module>
<module>kurento-crowddetector</module>
<module>kurento-chroma</module>
<module>kurento-pointerdetector</module>
<module>kurento-show-data-channel</module>
<module>kurento-send-data-channel</module>
<module>kurento-metadata-example</module>
<module>kurento-player</module>
</modules>
<repositories>
<repository>
<id>kurento-snapshots</id>
<name>Kurento Snapshot Repository</name>
<url>http://maven.kurento.org/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>