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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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>7.7-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-client</artifactId>
  31. <version>${project.version}</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>${project.groupId}</groupId>
  36. <artifactId>vaadin-client-compiler</artifactId>
  37. <version>${project.version}</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>com.vaadin</groupId>
  45. <artifactId>vaadin-maven-plugin</artifactId>
  46. <configuration>
  47. <modules>
  48. <module>com.vaadin.DefaultWidgetSet</module>
  49. </modules>
  50. <webappDirectory>${project.build.outputDirectory}/VAADIN/widgetsets</webappDirectory>
  51. <persistentunitcachedir>${project.build.directory}/gwt-unitCache</persistentunitcachedir>
  52. <style>${widgetset.style}</style>
  53. </configuration>
  54. <executions>
  55. <execution>
  56. <goals>
  57. <goal>compile</goal>
  58. </goals>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. <plugin>
  63. <groupId>org.apache.felix</groupId>
  64. <artifactId>maven-bundle-plugin</artifactId>
  65. <extensions>true</extensions>
  66. <configuration>
  67. <instructions>
  68. <Bundle-Version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</Bundle-Version>
  69. <Bundle-RequiredExecutionEnvironment>JavaSE-1.6</Bundle-RequiredExecutionEnvironment>
  70. <!-- Export package is handled in exec plugin -->
  71. <Export-Package></Export-Package>
  72. <Import-Package></Import-Package>
  73. </instructions>
  74. </configuration>
  75. <executions>
  76. <execution>
  77. <id>bundle-manifest</id>
  78. <phase>prepare-package</phase>
  79. <goals>
  80. <goal>manifest</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-jar-plugin</artifactId>
  88. <version>2.6</version>
  89. <configuration>
  90. <archive>
  91. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  92. <index>false</index>
  93. <manifest>
  94. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  95. </manifest>
  96. </archive>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. <pluginManagement>
  101. <plugins>
  102. <!--This plugin's configuration is used to store Eclipse
  103. m2e settings only. It has no influence on the Maven build itself. -->
  104. <plugin>
  105. <groupId>org.eclipse.m2e</groupId>
  106. <artifactId>lifecycle-mapping</artifactId>
  107. <version>1.0.0</version>
  108. <configuration>
  109. <lifecycleMappingMetadata>
  110. <pluginExecutions>
  111. <pluginExecution>
  112. <pluginExecutionFilter>
  113. <groupId>
  114. org.codehaus.mojo
  115. </groupId>
  116. <artifactId>
  117. exec-maven-plugin
  118. </artifactId>
  119. <versionRange>
  120. [1.4.0,)
  121. </versionRange>
  122. <goals>
  123. <goal>exec</goal>
  124. </goals>
  125. </pluginExecutionFilter>
  126. <action>
  127. <ignore />
  128. </action>
  129. </pluginExecution>
  130. </pluginExecutions>
  131. </lifecycleMappingMetadata>
  132. </configuration>
  133. </plugin>
  134. </plugins>
  135. </pluginManagement>
  136. </build>
  137. </project>