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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <artifactId>vaadin-osgi-integration</artifactId>
  5. <packaging>jar</packaging>
  6. <url>https://vaadin.com/</url>
  7. <description>OSGi Integration</description>
  8. <parent>
  9. <groupId>com.vaadin</groupId>
  10. <artifactId>vaadin-root</artifactId>
  11. <version>8.15-SNAPSHOT</version>
  12. </parent>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <!-- OSGi Dependencies -->
  20. <dependency>
  21. <groupId>org.osgi</groupId>
  22. <artifactId>osgi.core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.osgi</groupId>
  26. <artifactId>osgi.annotation</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.osgi</groupId>
  30. <artifactId>osgi.cmpn</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>${project.groupId}</groupId>
  34. <artifactId>vaadin-shared</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>${project.groupId}</groupId>
  39. <artifactId>vaadin-server</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.servlet</groupId>
  44. <artifactId>javax.servlet-api</artifactId>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-compiler-plugin</artifactId>
  52. </plugin>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-checkstyle-plugin</artifactId>
  56. <executions>
  57. <execution>
  58. <goals>
  59. <goal>checkstyle</goal>
  60. </goals>
  61. <phase>process-sources</phase>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. <plugin>
  66. <groupId>biz.aQute.bnd</groupId>
  67. <artifactId>bnd-maven-plugin</artifactId>
  68. </plugin>
  69. <!-- This is required to copy the bnd generated MANIFEST.MF to the jar.
  70. https://issues.apache.org/jira/browse/MJAR-193 is supposed to address this
  71. issue, but at the time of writing this the configuration is necessary. Check
  72. https://github.com/bndtools/bnd/tree/master/maven/bnd-maven-plugin -->
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-jar-plugin</artifactId>
  76. <configuration>
  77. <archive>
  78. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  79. <index>false</index>
  80. <manifest>
  81. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  82. </manifest>
  83. </archive>
  84. </configuration>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </project>