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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. <version>8.12-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-karaf-bundle2</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Vaadin Karaf test bundle 2</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. <!-- TODO: Add this to BOM and remove version here -->
  44. <version>${vaadin.version}</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. <executions>
  84. <execution>
  85. <phase>process-resources</phase>
  86. <goals>
  87. <goal>compile-theme</goal>
  88. </goals>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-jar-plugin</artifactId>
  95. <version>3.0.2</version>
  96. <configuration>
  97. <archive>
  98. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  99. </archive>
  100. </configuration>
  101. </plugin>
  102. <plugin>
  103. <groupId>com.github.klieber</groupId>
  104. <artifactId>phantomjs-maven-plugin</artifactId>
  105. <version>0.7</version>
  106. <configuration>
  107. <skip>true</skip>
  108. </configuration>
  109. </plugin>
  110. </plugins>
  111. </build>
  112. <profiles>
  113. <profile>
  114. <!-- Vaadin pre-release repositories -->
  115. <id>vaadin-prerelease</id>
  116. <activation>
  117. <activeByDefault>true</activeByDefault>
  118. </activation>
  119. <repositories>
  120. <repository>
  121. <id>vaadin-prereleases</id>
  122. <url>https://maven.vaadin.com/vaadin-prereleases</url>
  123. </repository>
  124. <repository>
  125. <id>vaadin-snapshots</id>
  126. <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  127. <releases>
  128. <enabled>false</enabled>
  129. </releases>
  130. <snapshots>
  131. <enabled>true</enabled>
  132. </snapshots>
  133. </repository>
  134. </repositories>
  135. <pluginRepositories>
  136. <pluginRepository>
  137. <id>vaadin-prereleases</id>
  138. <url>https://maven.vaadin.com/vaadin-prereleases</url>
  139. </pluginRepository>
  140. <pluginRepository>
  141. <id>vaadin-snapshots</id>
  142. <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  143. <releases>
  144. <enabled>false</enabled>
  145. </releases>
  146. <snapshots>
  147. <enabled>true</enabled>
  148. </snapshots>
  149. </pluginRepository>
  150. </pluginRepositories>
  151. </profile>
  152. </profiles>
  153. </project>