Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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-all</artifactId>
  11. <name>vaadin-all</name>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <webcontent.dir>${project.build.outputDirectory}/WebContent/</webcontent.dir>
  15. <maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format>
  16. </properties>
  17. <url>https://vaadin.com/</url>
  18. <description>Vaadin All package</description>
  19. <dependencies>
  20. <dependency>
  21. <groupId>${project.groupId}</groupId>
  22. <artifactId>vaadin-shared</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>${project.groupId}</groupId>
  27. <artifactId>vaadin-push</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>${project.groupId}</groupId>
  32. <artifactId>vaadin-server</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>${project.groupId}</groupId>
  37. <artifactId>vaadin-themes</artifactId>
  38. <version>${project.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>${project.groupId}</groupId>
  42. <artifactId>vaadin-client</artifactId>
  43. <version>${project.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>${project.groupId}</groupId>
  47. <artifactId>vaadin-client-compiler</artifactId>
  48. <version>${project.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>${project.groupId}</groupId>
  52. <artifactId>vaadin-client-compiled</artifactId>
  53. <version>${project.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>${project.groupId}</groupId>
  57. <artifactId>vaadin-compatibility-shared</artifactId>
  58. <version>${project.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>${project.groupId}</groupId>
  62. <artifactId>vaadin-compatibility-server</artifactId>
  63. <version>${project.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>${project.groupId}</groupId>
  67. <artifactId>vaadin-compatibility-themes</artifactId>
  68. <version>${project.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>${project.groupId}</groupId>
  72. <artifactId>vaadin-compatibility-client</artifactId>
  73. <version>${project.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>${project.groupId}</groupId>
  77. <artifactId>vaadin-compatibility-client-compiled</artifactId>
  78. <version>${project.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>${project.groupId}</groupId>
  82. <artifactId>vaadin-widgets</artifactId>
  83. <version>${project.version}</version>
  84. </dependency>
  85. <!-- Needed because referenced from javadocs -->
  86. <dependency>
  87. <groupId>javax.portlet</groupId>
  88. <artifactId>portlet-api</artifactId>
  89. <version>2.0</version>
  90. <scope>provided</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.liferay.portal</groupId>
  94. <artifactId>portal-service</artifactId>
  95. <version>${liferay.portal-service.version}</version>
  96. <scope>provided</scope>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <plugins>
  101. <!-- Release Notes -->
  102. <plugin>
  103. <groupId>org.codehaus.mojo</groupId>
  104. <artifactId>build-helper-maven-plugin</artifactId>
  105. <executions>
  106. <execution>
  107. <phase>initialize</phase>
  108. <id>parse-version</id>
  109. <goals>
  110. <goal>parse-version</goal>
  111. </goals>
  112. </execution>
  113. </executions>
  114. </plugin>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-checkstyle-plugin</artifactId>
  118. <executions>
  119. <execution>
  120. <goals>
  121. <goal>checkstyle</goal>
  122. </goals>
  123. <phase>process-sources</phase>
  124. </execution>
  125. </executions>
  126. </plugin>
  127. <plugin>
  128. <artifactId>maven-antrun-plugin</artifactId>
  129. <executions>
  130. <execution>
  131. <id>filter-release-notes</id>
  132. <phase>prepare-package</phase>
  133. <goals>
  134. <goal>run</goal>
  135. </goals>
  136. <configuration>
  137. <target>
  138. <copy todir="${webcontent.dir}">
  139. <fileset dir="src/main/templates/">
  140. <patternset>
  141. <include
  142. name="release-notes.html" />
  143. </patternset>
  144. </fileset>
  145. <filterchain>
  146. <expandproperties />
  147. <replacetokens
  148. begintoken="@" endtoken="@">
  149. <token key="version"
  150. value="${project.version}" />
  151. <token key="version-minor"
  152. value="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}" />
  153. <token key="gwt-version"
  154. value="${vaadin.gwt.version}" />
  155. <token key="builddate"
  156. value="${maven.build.timestamp}" />
  157. </replacetokens>
  158. </filterchain>
  159. </copy>
  160. </target>
  161. </configuration>
  162. </execution>
  163. </executions>
  164. </plugin>
  165. <!-- vaadin-all zip -->
  166. <plugin>
  167. <artifactId>maven-assembly-plugin</artifactId>
  168. <executions>
  169. <execution>
  170. <phase>package</phase>
  171. <goals>
  172. <goal>single</goal>
  173. </goals>
  174. </execution>
  175. </executions>
  176. <configuration>
  177. <archive>
  178. <addMavenDescriptor>false</addMavenDescriptor>
  179. </archive>
  180. <appendAssemblyId>false</appendAssemblyId>
  181. <descriptors>
  182. <descriptor>all-assembly-descriptor.xml</descriptor>
  183. </descriptors>
  184. </configuration>
  185. </plugin>
  186. </plugins>
  187. <pluginManagement>
  188. <plugins>
  189. <!-- Skip install, deploy and javadoc -->
  190. <plugin>
  191. <artifactId>maven-deploy-plugin</artifactId>
  192. <configuration>
  193. <skip>true</skip>
  194. </configuration>
  195. </plugin>
  196. <plugin>
  197. <groupId>org.sonatype.plugins</groupId>
  198. <artifactId>nexus-staging-maven-plugin</artifactId>
  199. <configuration>
  200. <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
  201. </configuration>
  202. </plugin>
  203. <plugin>
  204. <artifactId>maven-install-plugin</artifactId>
  205. <configuration>
  206. <skip>true</skip>
  207. </configuration>
  208. </plugin>
  209. <plugin>
  210. <artifactId>maven-jar-plugin</artifactId>
  211. <executions>
  212. <execution>
  213. <id>default-jar</id>
  214. <phase>never</phase>
  215. </execution>
  216. </executions>
  217. </plugin>
  218. <plugin>
  219. <artifactId>maven-source-plugin</artifactId>
  220. <configuration>
  221. <skipSource>true</skipSource>
  222. </configuration>
  223. </plugin>
  224. <plugin>
  225. <artifactId>maven-javadoc-plugin</artifactId>
  226. <configuration>
  227. <skip>true</skip>
  228. </configuration>
  229. </plugin>
  230. </plugins>
  231. </pluginManagement>
  232. </build>
  233. <profiles>
  234. <profile>
  235. <id>release</id>
  236. <activation>
  237. <activeByDefault>false</activeByDefault>
  238. </activation>
  239. <build>
  240. <plugins>
  241. <!-- Extract sources for JavaDoc -->
  242. <plugin>
  243. <artifactId>maven-dependency-plugin</artifactId>
  244. <executions>
  245. <execution>
  246. <id>extract-sources</id>
  247. <phase>prepare-package</phase>
  248. <goals>
  249. <goal>unpack</goal>
  250. </goals>
  251. <configuration>
  252. <artifactItems>
  253. <artifactItem>
  254. <groupId>${project.groupId}</groupId>
  255. <artifactId>vaadin-shared</artifactId>
  256. <classifier>sources</classifier>
  257. </artifactItem>
  258. <artifactItem>
  259. <groupId>${project.groupId}</groupId>
  260. <artifactId>vaadin-server</artifactId>
  261. <classifier>sources</classifier>
  262. </artifactItem>
  263. <artifactItem>
  264. <groupId>${project.groupId}</groupId>
  265. <artifactId>vaadin-client</artifactId>
  266. <classifier>sources</classifier>
  267. </artifactItem>
  268. </artifactItems>
  269. </configuration>
  270. </execution>
  271. </executions>
  272. </plugin>
  273. <!-- Add extracted sources -->
  274. <plugin>
  275. <groupId>org.codehaus.mojo</groupId>
  276. <artifactId>build-helper-maven-plugin</artifactId>
  277. <executions>
  278. <execution>
  279. <id>add-source-path</id>
  280. <phase>prepare-package</phase>
  281. <goals>
  282. <goal>add-source</goal>
  283. </goals>
  284. <configuration>
  285. <sources>
  286. <source>${dependency.unpack.directory}</source>
  287. </sources>
  288. </configuration>
  289. </execution>
  290. </executions>
  291. </plugin>
  292. <!-- Make Combined JavaDoc -->
  293. <plugin>
  294. <artifactId>maven-javadoc-plugin</artifactId>
  295. <executions>
  296. <execution>
  297. <id>generate-combined-javadoc</id>
  298. <phase>package</phase>
  299. <goals>
  300. <goal>jar</goal>
  301. </goals>
  302. <configuration>
  303. <failOnError>false</failOnError>
  304. <excludePackageNames>com.vaadin.buildhelpers</excludePackageNames>
  305. <skip>false</skip>
  306. <links>
  307. <link>https://docs.oracle.com/javase/8/docs/api/</link>
  308. <link>https://docs.oracle.com/javaee/6/api/</link>
  309. <link>https://portals.apache.org/pluto/portlet-2.0-apidocs/</link>
  310. <link>https://docs.liferay.com/portal/6.2/javadocs/</link>
  311. </links>
  312. </configuration>
  313. </execution>
  314. </executions>
  315. </plugin>
  316. </plugins>
  317. <pluginManagement>
  318. <plugins>
  319. <plugin>
  320. <groupId>org.apache.maven.plugins</groupId>
  321. <artifactId>maven-gpg-plugin</artifactId>
  322. <configuration>
  323. <skip>true</skip>
  324. </configuration>
  325. </plugin>
  326. </plugins>
  327. </pluginManagement>
  328. </build>
  329. </profile>
  330. </profiles>
  331. </project>