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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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.2-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. <!-- TODO: Add this to BOM and remove version here -->
  45. <version>${vaadin.version}</version>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.osgi</groupId>
  50. <artifactId>osgi.core</artifactId>
  51. <version>6.0.0</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.osgi</groupId>
  56. <artifactId>osgi.annotation</artifactId>
  57. <version>6.0.1</version>
  58. <scope>provided</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.osgi</groupId>
  62. <artifactId>osgi.cmpn</artifactId>
  63. <version>6.0.0</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>biz.aQute.bnd</groupId>
  71. <artifactId>bnd-maven-plugin</artifactId>
  72. <version>3.3.0</version>
  73. <executions>
  74. <execution>
  75. <goals>
  76. <goal>bnd-process</goal>
  77. </goals>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. <plugin>
  82. <groupId>com.vaadin</groupId>
  83. <artifactId>vaadin-maven-plugin</artifactId>
  84. <version>${vaadin.plugin.version}</version>
  85. <executions>
  86. <execution>
  87. <phase>process-resources</phase>
  88. <goals>
  89. <goal>compile-theme</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-jar-plugin</artifactId>
  97. <version>3.0.2</version>
  98. <configuration>
  99. <archive>
  100. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  101. </archive>
  102. </configuration>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. <profiles>
  107. <profile>
  108. <!-- Vaadin pre-release repositories -->
  109. <id>vaadin-prerelease</id>
  110. <activation>
  111. <activeByDefault>true</activeByDefault>
  112. </activation>
  113. <repositories>
  114. <repository>
  115. <id>vaadin-prereleases</id>
  116. <url>http://maven.vaadin.com/vaadin-prereleases</url>
  117. </repository>
  118. <repository>
  119. <id>vaadin-snapshots</id>
  120. <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  121. <releases>
  122. <enabled>false</enabled>
  123. </releases>
  124. <snapshots>
  125. <enabled>true</enabled>
  126. </snapshots>
  127. </repository>
  128. </repositories>
  129. <pluginRepositories>
  130. <pluginRepository>
  131. <id>vaadin-prereleases</id>
  132. <url>http://maven.vaadin.com/vaadin-prereleases</url>
  133. </pluginRepository>
  134. <pluginRepository>
  135. <id>vaadin-snapshots</id>
  136. <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  137. <releases>
  138. <enabled>false</enabled>
  139. </releases>
  140. <snapshots>
  141. <enabled>true</enabled>
  142. </snapshots>
  143. </pluginRepository>
  144. </pluginRepositories>
  145. </profile>
  146. </profiles>
  147. </project>