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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-client-compiler</artifactId>
  11. <name>vaadin-client-compiler</name>
  12. <packaging>jar</packaging>
  13. <url>https://vaadin.com/</url>
  14. <description>Vaadin client compiler</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.vaadin</groupId>
  18. <artifactId>vaadin-shared</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.vaadin</groupId>
  23. <artifactId>vaadin-server</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.vaadin</groupId>
  28. <artifactId>vaadin-client</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.vaadin</groupId>
  33. <artifactId>vaadin-sass-compiler</artifactId>
  34. <version>${vaadin.sass.version}</version>
  35. <!-- remove cssparser override once sass-compiler is updated -->
  36. <exclusions>
  37. <exclusion>
  38. <groupId>net.sourceforge.cssparser</groupId>
  39. <artifactId>cssparser</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>commons-collections</groupId>
  45. <artifactId>commons-collections</artifactId>
  46. <version>3.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-logging</groupId>
  50. <artifactId>commons-logging</artifactId>
  51. <version>1.1.3</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>net.sourceforge.cssparser</groupId>
  55. <artifactId>cssparser</artifactId>
  56. <version>0.9.11</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>ant</groupId>
  60. <artifactId>ant</artifactId>
  61. <version>1.6.5</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>ant</groupId>
  65. <artifactId>ant-launcher</artifactId>
  66. <version>1.6.5</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.eclipse.jetty</groupId>
  70. <artifactId>jetty-annotations</artifactId>
  71. <version>8.1.12.v20130726</version>
  72. <exclusions>
  73. <exclusion>
  74. <groupId>org.eclipse.jetty.orbit</groupId>
  75. <artifactId>*</artifactId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.eclipse.jetty</groupId>
  81. <artifactId>jetty-servlets</artifactId>
  82. <version>8.1.12.v20130726</version>
  83. <exclusions>
  84. <exclusion>
  85. <groupId>org.eclipse.jetty.orbit</groupId>
  86. <artifactId>*</artifactId>
  87. </exclusion>
  88. </exclusions>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.eclipse.jetty</groupId>
  92. <artifactId>jetty-util</artifactId>
  93. <version>8.1.12.v20130726</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.jdesktop</groupId>
  97. <artifactId>swing-worker</artifactId>
  98. <version>1.1</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-codec</groupId>
  102. <artifactId>commons-codec</artifactId>
  103. <version>1.8</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-io</groupId>
  107. <artifactId>commons-io</artifactId>
  108. <version>${commons-io.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.commons</groupId>
  112. <artifactId>commons-lang3</artifactId>
  113. <version>3.1</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.james</groupId>
  117. <artifactId>apache-mime4j</artifactId>
  118. <version>0.6</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.httpcomponents</groupId>
  122. <artifactId>httpclient</artifactId>
  123. <version>4.3.1</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.httpcomponents</groupId>
  127. <artifactId>httpcore</artifactId>
  128. <version>4.3</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.httpcomponents</groupId>
  132. <artifactId>httpmime</artifactId>
  133. <version>4.3.1</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>net.sourceforge.nekohtml</groupId>
  137. <artifactId>nekohtml</artifactId>
  138. <version>1.9.19</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>xalan</groupId>
  142. <artifactId>serializer</artifactId>
  143. <version>2.7.1</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>xerces</groupId>
  147. <artifactId>xercesImpl</artifactId>
  148. <version>2.11.0</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>xml-apis</groupId>
  152. <artifactId>xml-apis</artifactId>
  153. <version>1.4.01</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.ibm.icu</groupId>
  157. <artifactId>icu4j</artifactId>
  158. <version>50.1.1</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.vaadin</groupId>
  162. <artifactId>vaadin-client-compiler-deps</artifactId>
  163. <version>1.2.0</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.vaadin.external.gwt</groupId>
  167. <artifactId>gwt-dev</artifactId>
  168. <version>${vaadin.gwt.version}</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>junit</groupId>
  172. <artifactId>junit</artifactId>
  173. <version>${junit.version}</version>
  174. <scope>test</scope>
  175. </dependency>
  176. </dependencies>
  177. <build>
  178. <resources>
  179. <resource>
  180. <directory>src/main/resources</directory>
  181. <filtering>true</filtering>
  182. </resource>
  183. </resources>
  184. <plugins>
  185. <plugin>
  186. <groupId>org.apache.maven.plugins</groupId>
  187. <artifactId>maven-checkstyle-plugin</artifactId>
  188. <executions>
  189. <execution>
  190. <goals>
  191. <goal>checkstyle</goal>
  192. </goals>
  193. <phase>process-sources</phase>
  194. </execution>
  195. </executions>
  196. </plugin>
  197. <plugin>
  198. <artifactId>maven-resources-plugin</artifactId>
  199. <executions>
  200. <!-- Copy .java files to package -->
  201. <execution>
  202. <id>copy-sources</id>
  203. <!-- here the phase you need -->
  204. <phase>prepare-package</phase>
  205. <goals>
  206. <goal>copy-resources</goal>
  207. </goals>
  208. <configuration>
  209. <outputDirectory>${project.build.outputDirectory}</outputDirectory>
  210. <resources>
  211. <resource>
  212. <directory>src/main/java</directory>
  213. <filtering>false</filtering>
  214. </resource>
  215. </resources>
  216. </configuration>
  217. </execution>
  218. </executions>
  219. </plugin>
  220. <plugin>
  221. <groupId>org.apache.felix</groupId>
  222. <artifactId>maven-bundle-plugin</artifactId>
  223. <extensions>true</extensions>
  224. <configuration>
  225. <instructions>
  226. <Bundle-Version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</Bundle-Version>
  227. <Bundle-RequiredExecutionEnvironment>JavaSE-1.6</Bundle-RequiredExecutionEnvironment>
  228. <Export-Package>com.vaadin.*;version="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}"</Export-Package>
  229. <!--TODO decide gwt packages version number<Export-Package>com.vaadin.*;version="${project.version}",com.google.gwt.*;version="${vaadin.gwt.version}"</Export-Package> -->
  230. <Import-Package></Import-Package> <!--todo find out what should be in Import-Package -->
  231. </instructions>
  232. </configuration>
  233. <executions>
  234. <execution>
  235. <id>bundle-manifest</id>
  236. <phase>prepare-package</phase>
  237. <goals>
  238. <goal>manifest</goal>
  239. </goals>
  240. </execution>
  241. </executions>
  242. </plugin>
  243. <plugin>
  244. <groupId>org.apache.maven.plugins</groupId>
  245. <artifactId>maven-jar-plugin</artifactId>
  246. <configuration>
  247. <archive>
  248. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  249. <index />
  250. <manifest>
  251. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  252. </manifest>
  253. </archive>
  254. </configuration>
  255. </plugin>
  256. <plugin>
  257. <groupId>org.codehaus.mojo</groupId>
  258. <artifactId>animal-sniffer-maven-plugin</artifactId>
  259. <configuration>
  260. <skip>true</skip>
  261. </configuration>
  262. </plugin>
  263. <plugin>
  264. <groupId>org.apache.maven.plugins</groupId>
  265. <artifactId>maven-surefire-plugin</artifactId>
  266. </plugin>
  267. </plugins>
  268. </build>
  269. </project>