Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pom.xml 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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. <parent>
  6. <artifactId>vaadin-test-karaf</artifactId>
  7. <groupId>com.vaadin</groupId>
  8. <relativePath>..</relativePath>
  9. <version>8.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>vaadin-karaf-bundle2</artifactId>
  12. <packaging>jar</packaging>
  13. <name>Vaadin Karaf test bundle 2</name>
  14. <dependencyManagement>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.vaadin</groupId>
  18. <artifactId>vaadin-bom</artifactId>
  19. <version>${vaadin.version}</version>
  20. <type>pom</type>
  21. <scope>import</scope>
  22. </dependency>
  23. </dependencies>
  24. </dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.vaadin</groupId>
  28. <artifactId>vaadin-server</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.vaadin</groupId>
  33. <artifactId>vaadin-client-compiled</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.vaadin</groupId>
  38. <artifactId>vaadin-themes</artifactId>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.vaadin</groupId>
  43. <artifactId>vaadin-osgi-integration</artifactId>
  44. <version>8.1.0.beta1</version>
  45. <scope>provided</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.osgi</groupId>
  49. <artifactId>osgi.core</artifactId>
  50. <version>6.0.0</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.osgi</groupId>
  55. <artifactId>osgi.annotation</artifactId>
  56. <version>6.0.1</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.osgi</groupId>
  61. <artifactId>osgi.cmpn</artifactId>
  62. <version>6.0.0</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>biz.aQute.bnd</groupId>
  70. <artifactId>bnd-maven-plugin</artifactId>
  71. <version>3.3.0</version>
  72. <executions>
  73. <execution>
  74. <goals>
  75. <goal>bnd-process</goal>
  76. </goals>
  77. </execution>
  78. </executions>
  79. </plugin>
  80. <plugin>
  81. <groupId>com.vaadin</groupId>
  82. <artifactId>vaadin-maven-plugin</artifactId>
  83. <version>${vaadin.plugin.version}</version>
  84. <executions>
  85. <execution>
  86. <phase>process-resources</phase>
  87. <goals>
  88. <goal>compile-theme</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-jar-plugin</artifactId>
  96. <version>3.0.2</version>
  97. <configuration>
  98. <archive>
  99. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  100. </archive>
  101. </configuration>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. <profiles>
  106. <profile>
  107. <!-- Vaadin pre-release repositories -->
  108. <id>vaadin-prerelease</id>
  109. <activation>
  110. <activeByDefault>true</activeByDefault>
  111. </activation>
  112. <repositories>
  113. <repository>
  114. <id>vaadin-prereleases</id>
  115. <url>http://maven.vaadin.com/vaadin-prereleases</url>
  116. </repository>
  117. <repository>
  118. <id>vaadin-snapshots</id>
  119. <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  120. <releases>
  121. <enabled>false</enabled>
  122. </releases>
  123. <snapshots>
  124. <enabled>true</enabled>
  125. </snapshots>
  126. </repository>
  127. </repositories>
  128. <pluginRepositories>
  129. <pluginRepository>
  130. <id>vaadin-prereleases</id>
  131. <url>http://maven.vaadin.com/vaadin-prereleases</url>
  132. </pluginRepository>
  133. <pluginRepository>
  134. <id>vaadin-snapshots</id>
  135. <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  136. <releases>
  137. <enabled>false</enabled>
  138. </releases>
  139. <snapshots>
  140. <enabled>true</enabled>
  141. </snapshots>
  142. </pluginRepository>
  143. </pluginRepositories>
  144. </profile>
  145. </profiles>
  146. </project>