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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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.2-SNAPSHOT</version>
  9. <relativePath>..</relativePath>
  10. </parent>
  11. <artifactId>vaadin-karaf-bundle1</artifactId>
  12. <packaging>jar</packaging>
  13. <name>Vaadin Karaf test bundle 1</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. <!-- For compiling WidgetSet -->
  66. <dependency>
  67. <groupId>com.vaadin</groupId>
  68. <artifactId>vaadin-client</artifactId>
  69. <version>${vaadin.version}</version>
  70. <scope>provided</scope>
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>biz.aQute.bnd</groupId>
  77. <artifactId>bnd-maven-plugin</artifactId>
  78. <version>3.3.0</version>
  79. <executions>
  80. <execution>
  81. <goals>
  82. <goal>bnd-process</goal>
  83. </goals>
  84. <configuration>
  85. </configuration>
  86. </execution>
  87. </executions>
  88. </plugin>
  89. <plugin>
  90. <groupId>com.vaadin</groupId>
  91. <artifactId>vaadin-maven-plugin</artifactId>
  92. <version>${vaadin.plugin.version}</version>
  93. <executions>
  94. <execution>
  95. <goals>
  96. <goal>compile</goal>
  97. <goal>compile-theme</goal>
  98. </goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-jar-plugin</artifactId>
  105. <version>3.0.2</version>
  106. <configuration>
  107. <archive>
  108. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  109. </archive>
  110. </configuration>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. <profiles>
  115. <profile>
  116. <!-- Vaadin pre-release repositories -->
  117. <id>vaadin-prerelease</id>
  118. <activation>
  119. <activeByDefault>true</activeByDefault>
  120. </activation>
  121. <repositories>
  122. <repository>
  123. <id>vaadin-prereleases</id>
  124. <url>http://maven.vaadin.com/vaadin-prereleases</url>
  125. </repository>
  126. <repository>
  127. <id>vaadin-snapshots</id>
  128. <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  129. <releases>
  130. <enabled>false</enabled>
  131. </releases>
  132. <snapshots>
  133. <enabled>true</enabled>
  134. </snapshots>
  135. </repository>
  136. </repositories>
  137. <pluginRepositories>
  138. <pluginRepository>
  139. <id>vaadin-prereleases</id>
  140. <url>http://maven.vaadin.com/vaadin-prereleases</url>
  141. </pluginRepository>
  142. <pluginRepository>
  143. <id>vaadin-snapshots</id>
  144. <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  145. <releases>
  146. <enabled>false</enabled>
  147. </releases>
  148. <snapshots>
  149. <enabled>true</enabled>
  150. </snapshots>
  151. </pluginRepository>
  152. </pluginRepositories>
  153. </profile>
  154. </profiles>
  155. </project>