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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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-client-compiled</artifactId>
  11. <name>vaadin-compatibility-client-compiled</name>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <widgetset.name>com.vaadin.v7.Vaadin7WidgetSet</widgetset.name>
  15. <widgetset.style>OBF</widgetset.style>
  16. <widgetset.local.workers>6</widgetset.local.workers>
  17. <!-- These files are directly from Vaadin 7 -->
  18. <sonar.skip>true</sonar.skip>
  19. </properties>
  20. <url>https://vaadin.com/</url>
  21. <description>Vaadin 7 compatibility client compiled</description>
  22. <dependencies>
  23. <dependency>
  24. <groupId>${project.groupId}</groupId>
  25. <artifactId>vaadin-compatibility-server</artifactId>
  26. <version>${project.version}</version>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>${project.groupId}</groupId>
  31. <artifactId>vaadin-compatibility-client</artifactId>
  32. <version>${project.version}</version>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.vaadin</groupId>
  37. <artifactId>vaadin-client-compiler</artifactId>
  38. <version>${project.version}</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.osgi</groupId>
  43. <artifactId>osgi.core</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.osgi</groupId>
  47. <artifactId>osgi.cmpn</artifactId>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>com.vaadin</groupId>
  54. <artifactId>vaadin-maven-plugin</artifactId>
  55. <configuration>
  56. <modules>
  57. <module>${widgetset.name}</module>
  58. </modules>
  59. <webappDirectory>${project.build.outputDirectory}/VAADIN/widgetsets</webappDirectory>
  60. <persistentunitcachedir>${project.build.directory}/gwt-unitCache</persistentunitcachedir>
  61. <style>${widgetset.style}</style>
  62. <extraJvmArgs>-Xmx1G</extraJvmArgs>
  63. </configuration>
  64. <executions>
  65. <execution>
  66. <goals>
  67. <goal>compile</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. <plugin>
  73. <groupId>biz.aQute.bnd</groupId>
  74. <artifactId>bnd-maven-plugin</artifactId>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-jar-plugin</artifactId>
  79. <configuration>
  80. <archive>
  81. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  82. <index>false</index>
  83. <manifest>
  84. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  85. </manifest>
  86. </archive>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>