您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  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-parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>vaadin-root</artifactId>
  11. <name>vaadin-root</name>
  12. <packaging>pom</packaging>
  13. <version>8.0-SNAPSHOT</version>
  14. <prerequisites>
  15. <maven>3.1.0</maven>
  16. </prerequisites>
  17. <properties>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <!-- Used version numbers for dependencies -->
  23. <liferay.portal.version>6.0.2</liferay.portal.version>
  24. <jetty.version>9.3.9.v20160517</jetty.version>
  25. <vaadin.gwt.version>2.8.0-rc3</vaadin.gwt.version>
  26. <vaadin.plugin.version>8.0-SNAPSHOT</vaadin.plugin.version>
  27. <!-- Used in OSGi manifests -->
  28. <javax.validation.version>1.0.0.GA</javax.validation.version>
  29. <jsoup.version>1.8.3</jsoup.version>
  30. <javax.portlet.version>2.0</javax.portlet.version>
  31. <vaadin.sass.version>0.9.13</vaadin.sass.version>
  32. <!-- Note that this should be kept in sync with the class Constants -->
  33. <atmosphere.runtime.version>2.4.5.vaadin1</atmosphere.runtime.version>
  34. <!-- OSGi -->
  35. <osgi.javax.servlet.version>3.0.0</osgi.javax.servlet.version>
  36. <osgi.execution.environment>JavaSE-1.8</osgi.execution.environment>
  37. <osgi.bundle.version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</osgi.bundle.version>
  38. <!-- Dependency unpack directory -->
  39. <dependency.unpack.directory>${project.build.directory}/dependency-unpack</dependency.unpack.directory>
  40. <jetty.version>9.3.7.v20160115</jetty.version>
  41. <phantomjs.version>2.1.1</phantomjs.version>
  42. </properties>
  43. <!-- TODO: remove this after maven plugin has been released -->
  44. <pluginRepositories>
  45. <pluginRepository>
  46. <id>vaadin-prereleases</id>
  47. <url>http://maven.vaadin.com/vaadin-prereleases</url>
  48. </pluginRepository>
  49. <pluginRepository>
  50. <id>vaadin-snapshots</id>
  51. <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  52. <releases>
  53. <enabled>false</enabled>
  54. </releases>
  55. <snapshots>
  56. <enabled>true</enabled>
  57. </snapshots>
  58. </pluginRepository>
  59. </pluginRepositories>
  60. <organization>
  61. <name>Vaadin Ltd</name>
  62. </organization>
  63. <url>https://vaadin.com/</url>
  64. <description>Vaadin Framework Root Pom</description>
  65. <licenses>
  66. <license>
  67. <name>Apache License Version 2.0</name>
  68. <distribution>repo</distribution>
  69. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  70. </license>
  71. </licenses>
  72. <scm>
  73. <connection>scm:https:https://github.com/vaadin/vaadin.git</connection>
  74. <developerConnection>scm:https:https://github.com/vaadin/vaadin.git</developerConnection>
  75. <url>https://github.com/vaadin/vaadin</url>
  76. </scm>
  77. <dependencyManagement>
  78. <dependencies>
  79. <dependency>
  80. <groupId>commons-io</groupId>
  81. <artifactId>commons-io</artifactId>
  82. <version>2.4</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>commons-cli</groupId>
  86. <artifactId>commons-cli</artifactId>
  87. <version>1.2</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>commons-lang</groupId>
  91. <artifactId>commons-lang</artifactId>
  92. <version>2.6</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-codec</groupId>
  96. <artifactId>commons-codec</artifactId>
  97. <version>1.5</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.slf4j</groupId>
  101. <artifactId>slf4j-log4j12</artifactId>
  102. <version>1.6.1</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.vaadin</groupId>
  106. <artifactId>vaadin-sass-compiler</artifactId>
  107. <version>${vaadin.sass.version}</version>
  108. <exclusions>
  109. <!-- No need to have the minifier included for development
  110. mode on-the-fly compilation -->
  111. <exclusion>
  112. <groupId>com.yahoo.platform.yui</groupId>
  113. <artifactId>yuicompressor</artifactId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.carrotsearch</groupId>
  119. <artifactId>smartsprites</artifactId>
  120. <version>0.2.10</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.google.gwt</groupId>
  124. <artifactId>gwt-dev</artifactId>
  125. <version>${vaadin.gwt.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.google.gwt</groupId>
  129. <artifactId>gwt-elemental</artifactId>
  130. <version>${vaadin.gwt.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.google.gwt</groupId>
  134. <artifactId>gwt-servlet</artifactId>
  135. <version>${vaadin.gwt.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.vaadin.external.atmosphere</groupId>
  139. <artifactId>atmosphere-runtime</artifactId>
  140. <version>${atmosphere.runtime.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.vaadin.external.atmosphere.client</groupId>
  144. <artifactId>javascript</artifactId>
  145. <type>war</type>
  146. <version>2.3.2.vaadin1</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>junit</groupId>
  150. <artifactId>junit</artifactId>
  151. <version>4.12</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.easymock</groupId>
  155. <artifactId>easymock</artifactId>
  156. <version>3.0</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>javax.servlet</groupId>
  160. <artifactId>javax.servlet-api</artifactId>
  161. <version>3.0.1</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>javax.portlet</groupId>
  165. <artifactId>portlet-api</artifactId>
  166. <version>${javax.portlet.version}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.google.appengine</groupId>
  170. <artifactId>appengine-api-1.0-sdk</artifactId>
  171. <version>1.7.7</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>javax.validation</groupId>
  175. <artifactId>validation-api</artifactId>
  176. <version>${javax.validation.version}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.hibernate</groupId>
  180. <artifactId>hibernate-validator</artifactId>
  181. <version>4.2.0.Final</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.jsoup</groupId>
  185. <artifactId>jsoup</artifactId>
  186. <version>${jsoup.version}</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.mockito</groupId>
  190. <artifactId>mockito-all</artifactId>
  191. <version>1.9.5</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.hamcrest</groupId>
  195. <artifactId>hamcrest-all</artifactId>
  196. <version>1.3</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.hsqldb</groupId>
  200. <artifactId>hsqldb</artifactId>
  201. <version>2.2.6</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.vaadin</groupId>
  205. <artifactId>vaadin-testbench</artifactId>
  206. <version>4.1.0</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.eclipse.jetty</groupId>
  210. <artifactId>jetty-server</artifactId>
  211. <version>${jetty.version}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.eclipse.jetty</groupId>
  215. <artifactId>jetty-servlets</artifactId>
  216. <version>${jetty.version}</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.eclipse.jetty.websocket</groupId>
  220. <artifactId>websocket-server</artifactId>
  221. <version>${jetty.version}</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.eclipse.jetty</groupId>
  225. <artifactId>jetty-webapp</artifactId>
  226. <version>${jetty.version}</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.eclipse.jetty</groupId>
  230. <artifactId>jetty-util</artifactId>
  231. <version>${jetty.version}</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.eclipse.jetty</groupId>
  235. <artifactId>jetty-proxy</artifactId>
  236. <version>${jetty.version}</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>com.jcraft</groupId>
  240. <artifactId>jsch</artifactId>
  241. <version>0.1.52</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.eclipse.jgit</groupId>
  245. <artifactId>org.eclipse.jgit</artifactId>
  246. <version>3.5.1.201410131835-r</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>com.github.siom79.japicmp</groupId>
  250. <artifactId>japicmp-maven-plugin</artifactId>
  251. <version>0.9.1</version>
  252. </dependency>
  253. </dependencies>
  254. </dependencyManagement>
  255. <!-- Common test dependencies -->
  256. <dependencies>
  257. <dependency>
  258. <groupId>junit</groupId>
  259. <artifactId>junit</artifactId>
  260. <scope>test</scope>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.mockito</groupId>
  264. <artifactId>mockito-all</artifactId>
  265. <scope>test</scope>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.hamcrest</groupId>
  269. <artifactId>hamcrest-all</artifactId>
  270. <scope>test</scope>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.easymock</groupId>
  274. <artifactId>easymock</artifactId>
  275. <scope>test</scope>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.hibernate</groupId>
  279. <artifactId>hibernate-validator</artifactId>
  280. <scope>test</scope>
  281. </dependency>
  282. </dependencies>
  283. <build>
  284. <pluginManagement>
  285. <plugins>
  286. <plugin>
  287. <artifactId>maven-clean-plugin</artifactId>
  288. <version>3.0.0</version>
  289. </plugin>
  290. <plugin>
  291. <artifactId>maven-compiler-plugin</artifactId>
  292. <version>3.5.1</version>
  293. </plugin>
  294. <plugin>
  295. <artifactId>maven-deploy-plugin</artifactId>
  296. <version>2.8.2</version>
  297. </plugin>
  298. <plugin>
  299. <artifactId>maven-install-plugin</artifactId>
  300. <version>2.5.2</version>
  301. </plugin>
  302. <plugin>
  303. <artifactId>maven-resources-plugin</artifactId>
  304. <!-- Downgraded due to filtering related bug -->
  305. <version>2.6</version>
  306. </plugin>
  307. <plugin>
  308. <artifactId>maven-site-plugin</artifactId>
  309. <version>3.5</version>
  310. </plugin>
  311. <plugin>
  312. <artifactId>maven-jar-plugin</artifactId>
  313. <version>2.6</version>
  314. </plugin>
  315. <plugin>
  316. <artifactId>maven-assembly-plugin</artifactId>
  317. <version>2.6</version>
  318. </plugin>
  319. <plugin>
  320. <artifactId>maven-surefire-plugin</artifactId>
  321. <version>2.19.1</version>
  322. </plugin>
  323. <plugin>
  324. <artifactId>maven-failsafe-plugin</artifactId>
  325. <version>2.19.1</version>
  326. </plugin>
  327. <plugin>
  328. <groupId>com.github.klieber</groupId>
  329. <artifactId>phantomjs-maven-plugin</artifactId>
  330. <version>0.7</version>
  331. </plugin>
  332. <plugin>
  333. <artifactId>maven-antrun-plugin</artifactId>
  334. <version>1.8</version>
  335. </plugin>
  336. <plugin>
  337. <groupId>org.apache.felix</groupId>
  338. <artifactId>maven-bundle-plugin</artifactId>
  339. <version>3.0.1</version>
  340. </plugin>
  341. <plugin>
  342. <groupId>org.apache.maven.plugins</groupId>
  343. <artifactId>maven-dependency-plugin</artifactId>
  344. <version>2.10</version>
  345. <configuration>
  346. <outputDirectory>${dependency.unpack.directory}</outputDirectory>
  347. <overWriteReleases>false</overWriteReleases>
  348. <overWriteSnapshots>true</overWriteSnapshots>
  349. </configuration>
  350. </plugin>
  351. <plugin>
  352. <groupId>org.codehaus.mojo</groupId>
  353. <artifactId>exec-maven-plugin</artifactId>
  354. <version>1.4.0</version>
  355. </plugin>
  356. <plugin>
  357. <groupId>org.codehaus.mojo</groupId>
  358. <artifactId>versions-maven-plugin</artifactId>
  359. <version>2.3</version>
  360. </plugin>
  361. <plugin>
  362. <groupId>org.codehaus.mojo</groupId>
  363. <artifactId>build-helper-maven-plugin</artifactId>
  364. <version>1.10</version>
  365. </plugin>
  366. <plugin>
  367. <artifactId>maven-source-plugin</artifactId>
  368. <version>3.0.0</version>
  369. </plugin>
  370. <plugin>
  371. <groupId>com.vaadin</groupId>
  372. <artifactId>vaadin-maven-plugin</artifactId>
  373. <version>${vaadin.plugin.version}</version>
  374. </plugin>
  375. <plugin>
  376. <groupId>org.apache.maven.plugins</groupId>
  377. <artifactId>maven-checkstyle-plugin</artifactId>
  378. <version>2.17</version>
  379. <dependencies>
  380. <!-- Needed because of a JavadocMethodCheck bug in
  381. 6.11 -->
  382. <dependency>
  383. <groupId>com.puppycrawl.tools</groupId>
  384. <artifactId>checkstyle</artifactId>
  385. <version>6.17</version>
  386. </dependency>
  387. </dependencies>
  388. <configuration>
  389. <configLocation>../checkstyle/vaadin-checkstyle.xml</configLocation>
  390. <headerLocation>../checkstyle/header</headerLocation>
  391. <suppressionsLocation>../checkstyle/suppressions.xml</suppressionsLocation>
  392. <encoding>UTF-8</encoding>
  393. <consoleOutput>false</consoleOutput>
  394. <failsOnError>false</failsOnError>
  395. <linkXRef>false</linkXRef>
  396. </configuration>
  397. </plugin>
  398. <plugin>
  399. <groupId>org.codehaus.mojo</groupId>
  400. <artifactId>animal-sniffer-maven-plugin</artifactId>
  401. <version>1.15</version>
  402. </plugin>
  403. <plugin>
  404. <groupId>org.eclipse.m2e</groupId>
  405. <artifactId>lifecycle-mapping</artifactId>
  406. <version>1.0.0</version>
  407. <configuration>
  408. <lifecycleMappingMetadata>
  409. <pluginExecutions>
  410. <pluginExecution>
  411. <pluginExecutionFilter>
  412. <groupId>
  413. org.apache.maven.plugins
  414. </groupId>
  415. <artifactId>
  416. maven-antrun-plugin
  417. </artifactId>
  418. <versionRange>
  419. [1.8,)
  420. </versionRange>
  421. <goals>
  422. <goal>run</goal>
  423. </goals>
  424. </pluginExecutionFilter>
  425. <action>
  426. <ignore></ignore>
  427. </action>
  428. </pluginExecution>
  429. <pluginExecution>
  430. <pluginExecutionFilter>
  431. <groupId>
  432. com.github.klieber
  433. </groupId>
  434. <artifactId>
  435. phantomjs-maven-plugin
  436. </artifactId>
  437. <versionRange>
  438. [0.7,)
  439. </versionRange>
  440. <goals>
  441. <goal>install</goal>
  442. </goals>
  443. </pluginExecutionFilter>
  444. <action>
  445. <ignore></ignore>
  446. </action>
  447. </pluginExecution>
  448. </pluginExecutions>
  449. </lifecycleMappingMetadata>
  450. </configuration>
  451. </plugin>
  452. </plugins>
  453. </pluginManagement>
  454. <plugins>
  455. <plugin>
  456. <groupId>org.codehaus.mojo</groupId>
  457. <artifactId>animal-sniffer-maven-plugin</artifactId>
  458. <executions>
  459. <execution>
  460. <id>java8compatibility</id>
  461. <phase>test</phase>
  462. <goals>
  463. <goal>check</goal>
  464. </goals>
  465. <configuration>
  466. <signature>
  467. <groupId>org.codehaus.mojo.signature</groupId>
  468. <artifactId>java18</artifactId>
  469. <version>1.0</version>
  470. </signature>
  471. <ignores>
  472. <ignore>com.google.gwt.*</ignore>
  473. </ignores>
  474. </configuration>
  475. </execution>
  476. </executions>
  477. </plugin>
  478. <!-- Unpacked Dependencies as resource -->
  479. <plugin>
  480. <groupId>org.codehaus.mojo</groupId>
  481. <artifactId>build-helper-maven-plugin</artifactId>
  482. <!-- Needs extra resource folder for unpacked dependencies -->
  483. <executions>
  484. <execution>
  485. <id>add-dependency-resources</id>
  486. <phase>generate-resources</phase>
  487. <goals>
  488. <goal>add-resource</goal>
  489. </goals>
  490. <configuration>
  491. <resources>
  492. <resource>
  493. <directory>${dependency.unpack.directory}</directory>
  494. <filtering>false</filtering>
  495. </resource>
  496. </resources>
  497. </configuration>
  498. </execution>
  499. <execution>
  500. <id>parse-version</id>
  501. <goals>
  502. <goal>parse-version</goal>
  503. </goals>
  504. </execution>
  505. </executions>
  506. </plugin>
  507. </plugins>
  508. </build>
  509. <profiles>
  510. <profile>
  511. <!-- Profile is triggered unless apiDiff property is defined:
  512. always except "apicmp" profile which is disjoint with this profile
  513. !-->
  514. <id>default</id>
  515. <activation>
  516. <property>
  517. <name>!apiDiff</name>
  518. </property>
  519. </activation>
  520. <modules>
  521. <module>buildhelpers</module>
  522. <module>shared</module>
  523. <module>push</module>
  524. <module>server</module>
  525. <module>client</module>
  526. <module>client-compiler</module>
  527. <module>client-compiled</module>
  528. <module>themes</module>
  529. <module>widgets</module>
  530. <module>uitest-common</module>
  531. <module>uitest</module>
  532. <module>liferay</module>
  533. <module>all</module>
  534. <module>compatibility-server</module>
  535. <module>compatibility-client</module>
  536. <module>compatibility-client-compiled</module>
  537. <module>compatibility-shared</module>
  538. <module>compatibility-themes</module>
  539. <!-- Nexus staging bug needs the last module to be deployed. -->
  540. <module>bom</module>
  541. </modules>
  542. </profile>
  543. <profile>
  544. <id>slowtest</id>
  545. <modules>
  546. <module>test</module>
  547. </modules>
  548. </profile>
  549. <profile>
  550. <id>release</id>
  551. <activation>
  552. <activeByDefault>false</activeByDefault>
  553. </activation>
  554. <properties>
  555. <vaadin.plugin.version>${project.version}</vaadin.plugin.version>
  556. </properties>
  557. <build>
  558. <plugins>
  559. <plugin>
  560. <artifactId>maven-source-plugin</artifactId>
  561. <executions>
  562. <execution>
  563. <id>sources-jar</id>
  564. <phase>package</phase>
  565. <goals>
  566. <goal>jar</goal>
  567. </goals>
  568. <configuration>
  569. <!-- Only include java files -->
  570. <includes>
  571. <include>**/*.java</include>
  572. </includes>
  573. </configuration>
  574. </execution>
  575. </executions>
  576. </plugin>
  577. <plugin>
  578. <artifactId>maven-javadoc-plugin</artifactId>
  579. <version>2.10.3</version>
  580. <executions>
  581. <execution>
  582. <id>generate-javadoc</id>
  583. <goals>
  584. <goal>jar</goal>
  585. </goals>
  586. <configuration>
  587. <failOnError>false</failOnError>
  588. </configuration>
  589. </execution>
  590. </executions>
  591. </plugin>
  592. <plugin>
  593. <groupId>org.sonatype.plugins</groupId>
  594. <artifactId>nexus-staging-maven-plugin</artifactId>
  595. <version>1.6.7</version>
  596. <extensions>true</extensions>
  597. </plugin>
  598. </plugins>
  599. </build>
  600. </profile>
  601. <profile>
  602. <!-- Profile is triggered if apiDiff property is defined:
  603. this profile is disjoint with default profile.
  604. It allows to prevent running build for all available modules
  605. but restricts a number of modules to specified here only
  606. (which allows to avoid long time compilation for projects
  607. that are not needed since japicmp works with compiled classes).
  608. !-->
  609. <id>apicmp</id>
  610. <activation>
  611. <property>
  612. <name>apiDiff</name>
  613. </property>
  614. </activation>
  615. <modules>
  616. <module>server</module>
  617. <module>push</module>
  618. <module>client</module>
  619. <module>compatibility-server</module>
  620. <module>compatibility-client</module>
  621. <module>client-compiler</module>
  622. <module>shared</module>
  623. <module>compatibility-shared</module>
  624. </modules>
  625. <build>
  626. <plugins>
  627. <plugin>
  628. <groupId>com.github.siom79.japicmp</groupId>
  629. <artifactId>japicmp-maven-plugin</artifactId>
  630. <configuration>
  631. <oldVersion>
  632. <dependency>
  633. <groupId>${project.groupId}</groupId>
  634. <artifactId>${project.artifactId}</artifactId>
  635. <version>${vaadin.api.reference.version}</version>
  636. <type>jar</type>
  637. </dependency>
  638. </oldVersion>
  639. <newVersion>
  640. <file>
  641. <path>${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging}</path>
  642. </file>
  643. </newVersion>
  644. <parameter>
  645. <ignoreMissingClasses>true</ignoreMissingClasses>
  646. <onlyModified>true</onlyModified>
  647. <skipDiffReport>true</skipDiffReport>
  648. <skipXmlReport>true</skipXmlReport>
  649. <ignoreMissingOldVersion>true</ignoreMissingOldVersion>
  650. <ignoreMissingNewVersion>true</ignoreMissingNewVersion>
  651. </parameter>
  652. </configuration>
  653. <executions>
  654. <execution>
  655. <phase>verify</phase>
  656. <goals>
  657. <goal>cmp</goal>
  658. </goals>
  659. </execution>
  660. </executions>
  661. </plugin>
  662. </plugins>
  663. </build>
  664. </profile>
  665. </profiles>
  666. </project>