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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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-root</artifactId>
  8. <version>8.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-compatibility-server</artifactId>
  11. <name>vaadin-compatibility-server</name>
  12. <packaging>jar</packaging>
  13. <url>https://vaadin.com/</url>
  14. <description>Vaadin 7 compatibility package for Vaadin 8</description>
  15. <properties>
  16. <!-- These files are directly from Vaadin 7 -->
  17. <sonar.skip>true</sonar.skip>
  18. </properties>
  19. <dependencies>
  20. <!-- Project modules -->
  21. <dependency>
  22. <groupId>${project.groupId}</groupId>
  23. <artifactId>vaadin-server</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>${project.groupId}</groupId>
  28. <artifactId>vaadin-server</artifactId>
  29. <version>${project.version}</version>
  30. <classifier>tests</classifier>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>${project.groupId}</groupId>
  35. <artifactId>vaadin-compatibility-shared</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.servlet</groupId>
  40. <artifactId>javax.servlet-api</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>commons-lang</groupId>
  45. <artifactId>commons-lang</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.hsqldb</groupId>
  50. <artifactId>hsqldb</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <!-- Bean Validation API -->
  54. <dependency>
  55. <groupId>javax.validation</groupId>
  56. <artifactId>validation-api</artifactId>
  57. <scope>provided</scope>
  58. <optional>true</optional>
  59. </dependency>
  60. <!-- Google App Engine -->
  61. <dependency>
  62. <groupId>com.google.appengine</groupId>
  63. <artifactId>appengine-api-1.0-sdk</artifactId>
  64. <scope>provided</scope>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-checkstyle-plugin</artifactId>
  72. <executions>
  73. <execution>
  74. <goals>
  75. <goal>checkstyle</goal>
  76. </goals>
  77. <phase>process-sources</phase>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. <plugin>
  82. <groupId>org.apache.felix</groupId>
  83. <artifactId>maven-bundle-plugin</artifactId>
  84. <extensions>true</extensions>
  85. <configuration>
  86. <instructions>
  87. <Bundle-RequiredExecutionEnvironment>${osgi.execution.environment}</Bundle-RequiredExecutionEnvironment>
  88. <Bundle-Version>${osgi.bundle.version}</Bundle-Version>
  89. <Export-Package>VAADIN;version="${osgi.bundle.version}",com.vaadin.v7.*;version="${osgi.bundle.version}"</Export-Package>
  90. <Require-Bundle>
  91. com.vaadin.server;bundle-version="${osgi.bundle.version}",
  92. com.vaadin.shared;bundle-version="${osgi.bundle.version}"
  93. </Require-Bundle>
  94. </instructions>
  95. </configuration>
  96. <executions>
  97. <execution>
  98. <id>bundle-manifest</id>
  99. <phase>prepare-package</phase>
  100. <goals>
  101. <goal>manifest</goal>
  102. </goals>
  103. </execution>
  104. </executions>
  105. </plugin>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-jar-plugin</artifactId>
  109. <configuration>
  110. <archive>
  111. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  112. <index>false</index>
  113. <manifest>
  114. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  115. </manifest>
  116. </archive>
  117. </configuration>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-surefire-plugin</artifactId>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. </project>