pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <!-- Maven coordinates -->
  6. <parent>
  7. <groupId>org.kurento</groupId>
  8. <artifactId>kurento-parent-pom</artifactId>
  9. <version>6.7.1</version>
  10. </parent>
  11. <groupId>org.kurento.tutorial</groupId>
  12. <artifactId>kurento-tutorial</artifactId>
  13. <packaging>pom</packaging>
  14. <!-- Project-level information -->
  15. <name>Kurento Java Client Tutorials</name>
  16. <description>
  17. Sample client applications that showcase usage of the Kurento Java Client.
  18. </description>
  19. <scm>
  20. <url>https://github.com/Kurento/kurento-tutorial-java</url>
  21. <connection>scm:git:git://github.com/Kurento/kurento-tutorial-java.git</connection>
  22. <developerConnection>scm:git:git@github.com:Kurento/kurento-tutorial-java.git</developerConnection>
  23. </scm>
  24. <!-- Project configuration -->
  25. <properties>
  26. <version.kurento-datachannelexample>6.6.0</version.kurento-datachannelexample>
  27. </properties>
  28. <dependencyManagement>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.kurento.module</groupId>
  32. <artifactId>datachannelexample</artifactId>
  33. <version>${version.kurento-datachannelexample}</version>
  34. </dependency>
  35. </dependencies>
  36. </dependencyManagement>
  37. <modules>
  38. <module>kurento-chroma</module>
  39. <module>kurento-crowddetector</module>
  40. <module>kurento-group-call</module>
  41. <module>kurento-hello-world</module>
  42. <module>kurento-hello-world-recording</module>
  43. <module>kurento-hello-world-repository</module>
  44. <module>kurento-magic-mirror</module>
  45. <module>kurento-metadata-example</module>
  46. <module>kurento-one2many-call</module>
  47. <module>kurento-one2one-call</module>
  48. <module>kurento-one2one-call-advanced</module>
  49. <module>kurento-one2one-call-recording</module>
  50. <module>kurento-platedetector</module>
  51. <module>kurento-player</module>
  52. <module>kurento-pointerdetector</module>
  53. <module>kurento-rtp-receiver</module>
  54. <module>kurento-send-data-channel</module>
  55. <module>kurento-show-data-channel</module>
  56. </modules>
  57. <repositories>
  58. <repository>
  59. <id>kurento-snapshots</id>
  60. <name>Kurento Snapshots</name>
  61. <url>https://maven.openvidu.io/archiva/repository/snapshots/</url>
  62. <releases>
  63. <enabled>false</enabled>
  64. </releases>
  65. <snapshots>
  66. <enabled>true</enabled>
  67. </snapshots>
  68. </repository>
  69. </repositories>
  70. <pluginRepositories>
  71. <pluginRepository>
  72. <id>kurento-snapshots</id>
  73. <name>Kurento Snapshots</name>
  74. <url>https://maven.openvidu.io/archiva/repository/snapshots/</url>
  75. <releases>
  76. <enabled>false</enabled>
  77. </releases>
  78. <snapshots>
  79. <enabled>true</enabled>
  80. </snapshots>
  81. </pluginRepository>
  82. </pluginRepositories>
  83. </project>