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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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.2-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>${project.groupId}</groupId>
  49. <artifactId>vaadin-buildhelpers</artifactId>
  50. <version>${project.version}</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.osgi</groupId>
  55. <artifactId>osgi.core</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.osgi</groupId>
  59. <artifactId>osgi.cmpn</artifactId>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>com.vaadin</groupId>
  66. <artifactId>vaadin-maven-plugin</artifactId>
  67. <configuration>
  68. <modules>
  69. <module>${widgetset.name}</module>
  70. </modules>
  71. <webappDirectory>${project.build.outputDirectory}/VAADIN/widgetsets</webappDirectory>
  72. <persistentunitcachedir>${project.build.directory}/gwt-unitCache</persistentunitcachedir>
  73. <style>${widgetset.style}</style>
  74. <extraJvmArgs>-Xmx1G</extraJvmArgs>
  75. </configuration>
  76. <executions>
  77. <execution>
  78. <goals>
  79. <goal>compile</goal>
  80. </goals>
  81. </execution>
  82. </executions>
  83. </plugin>
  84. <plugin>
  85. <groupId>biz.aQute.bnd</groupId>
  86. <artifactId>bnd-maven-plugin</artifactId>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-jar-plugin</artifactId>
  91. <configuration>
  92. <archive>
  93. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  94. <index>false</index>
  95. <manifest>
  96. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  97. </manifest>
  98. </archive>
  99. </configuration>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>