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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. <groupId>com.vaadin</groupId>
  11. <artifactId>vaadin-client-compiled</artifactId>
  12. <name>vaadin-client-compiled</name>
  13. <packaging>jar</packaging>
  14. <properties>
  15. <widgetset.name>com.vaadin.DefaultWidgetSet</widgetset.name>
  16. <widgetset.style>OBF</widgetset.style>
  17. <widgetset.local.workers>6</widgetset.local.workers>
  18. </properties>
  19. <url>https://vaadin.com/</url>
  20. <description>Vaadin client compiled</description>
  21. <dependencies>
  22. <dependency>
  23. <groupId>${project.groupId}</groupId>
  24. <artifactId>vaadin-server</artifactId>
  25. <version>${project.version}</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>${project.groupId}</groupId>
  30. <artifactId>vaadin-shared</artifactId>
  31. <version>${project.version}</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>${project.groupId}</groupId>
  36. <artifactId>vaadin-client</artifactId>
  37. <version>${project.version}</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>${project.groupId}</groupId>
  42. <artifactId>vaadin-client-compiler</artifactId>
  43. <version>${project.version}</version>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>${project.groupId}</groupId>
  48. <artifactId>vaadin-buildhelpers</artifactId>
  49. <version>${project.version}</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.osgi</groupId>
  54. <artifactId>osgi.core</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.osgi</groupId>
  58. <artifactId>osgi.cmpn</artifactId>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <plugins>
  63. <plugin>
  64. <groupId>com.vaadin</groupId>
  65. <artifactId>vaadin-maven-plugin</artifactId>
  66. <configuration>
  67. <modules>
  68. <module>${widgetset.name}</module>
  69. </modules>
  70. <webappDirectory>${project.build.outputDirectory}/VAADIN/widgetsets</webappDirectory>
  71. <persistentunitcachedir>${project.build.directory}/gwt-unitCache</persistentunitcachedir>
  72. <style>${widgetset.style}</style>
  73. <extraJvmArgs>-Xmx1G</extraJvmArgs>
  74. </configuration>
  75. <executions>
  76. <execution>
  77. <goals>
  78. <goal>compile</goal>
  79. </goals>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. <plugin>
  84. <groupId>biz.aQute.bnd</groupId>
  85. <artifactId>bnd-maven-plugin</artifactId>
  86. </plugin>
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-jar-plugin</artifactId>
  90. <version>2.6</version>
  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. <pluginManagement>
  103. <plugins>
  104. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  105. <plugin>
  106. <groupId>org.eclipse.m2e</groupId>
  107. <artifactId>lifecycle-mapping</artifactId>
  108. <version>1.0.0</version>
  109. <configuration>
  110. <lifecycleMappingMetadata>
  111. <pluginExecutions>
  112. <pluginExecution>
  113. <pluginExecutionFilter>
  114. <groupId>
  115. org.codehaus.mojo
  116. </groupId>
  117. <artifactId>
  118. exec-maven-plugin
  119. </artifactId>
  120. <versionRange>
  121. [1.4.0,)
  122. </versionRange>
  123. <goals>
  124. <goal>exec</goal>
  125. </goals>
  126. </pluginExecutionFilter>
  127. <action>
  128. <ignore />
  129. </action>
  130. </pluginExecution>
  131. </pluginExecutions>
  132. </lifecycleMappingMetadata>
  133. </configuration>
  134. </plugin>
  135. </plugins>
  136. </pluginManagement>
  137. </build>
  138. </project>