You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 5.8KB

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