您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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