Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

pom.xml 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-checkstyle-plugin</artifactId>
  61. <executions>
  62. <execution>
  63. <goals>
  64. <goal>checkstyle</goal>
  65. </goals>
  66. <phase>process-sources</phase>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.felix</groupId>
  72. <artifactId>maven-bundle-plugin</artifactId>
  73. <extensions>true</extensions>
  74. <configuration>
  75. <instructions>
  76. <Bundle-RequiredExecutionEnvironment>${osgi.execution.environment}</Bundle-RequiredExecutionEnvironment>
  77. <Bundle-Version>${osgi.bundle.version}</Bundle-Version>
  78. <Export-Package>com.vaadin.v7.*;version="${osgi.bundle.version}"</Export-Package>
  79. <Require-Bundle>
  80. com.vaadin.server;bundle-version="${osgi.bundle.version}"
  81. </Require-Bundle>
  82. </instructions>
  83. </configuration>
  84. <executions>
  85. <execution>
  86. <id>bundle-manifest</id>
  87. <phase>prepare-package</phase>
  88. <goals>
  89. <goal>manifest</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-jar-plugin</artifactId>
  97. <configuration>
  98. <archive>
  99. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  100. <index>false</index>
  101. <manifest>
  102. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  103. </manifest>
  104. </archive>
  105. </configuration>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-surefire-plugin</artifactId>
  110. </plugin>
  111. </plugins>
  112. </build>
  113. </project>