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

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