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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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.15-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. <dependency>
  54. <groupId>javax.portlet</groupId>
  55. <artifactId>portlet-api</artifactId>
  56. <version>${javax.portlet.version}</version>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.vaadin.external.atmosphere</groupId>
  61. <artifactId>atmosphere-runtime</artifactId>
  62. <version>${atmosphere.runtime.version}</version>
  63. <scope>test</scope>
  64. </dependency>
  65. <!-- Bean Validation API -->
  66. <dependency>
  67. <groupId>javax.validation</groupId>
  68. <artifactId>validation-api</artifactId>
  69. <scope>provided</scope>
  70. <optional>true</optional>
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-checkstyle-plugin</artifactId>
  78. <executions>
  79. <execution>
  80. <goals>
  81. <goal>checkstyle</goal>
  82. </goals>
  83. <phase>process-sources</phase>
  84. </execution>
  85. </executions>
  86. </plugin>
  87. <plugin>
  88. <groupId>biz.aQute.bnd</groupId>
  89. <artifactId>bnd-maven-plugin</artifactId>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-jar-plugin</artifactId>
  94. <configuration>
  95. <archive>
  96. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  97. <index>false</index>
  98. <manifest>
  99. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  100. </manifest>
  101. </archive>
  102. </configuration>
  103. </plugin>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-surefire-plugin</artifactId>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>