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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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. <scope>provided</scope>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>biz.aQute.bnd</groupId>
  76. <artifactId>bnd-maven-plugin</artifactId>
  77. <version>3.3.0</version>
  78. <executions>
  79. <execution>
  80. <goals>
  81. <goal>bnd-process</goal>
  82. </goals>
  83. <configuration>
  84. </configuration>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. <plugin>
  89. <groupId>com.vaadin</groupId>
  90. <artifactId>vaadin-maven-plugin</artifactId>
  91. <executions>
  92. <execution>
  93. <goals>
  94. <goal>compile</goal>
  95. <goal>compile-theme</goal>
  96. </goals>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-jar-plugin</artifactId>
  103. <version>3.0.2</version>
  104. <configuration>
  105. <archive>
  106. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  107. </archive>
  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>http://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>http://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>