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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-liferay</artifactId>
  11. <name>vaadin-liferay</name>
  12. <packaging>pom</packaging>
  13. <organization>
  14. <name>Vaadin Ltd</name>
  15. </organization>
  16. <url>https://vaadin.com/</url>
  17. <description>Vaadin Liferay package</description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>${project.groupId}</groupId>
  21. <artifactId>vaadin-client-compiled</artifactId>
  22. <version>${project.version}</version>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>${project.groupId}</groupId>
  27. <artifactId>vaadin-push</artifactId>
  28. <version>${project.version}</version>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>${project.groupId}</groupId>
  33. <artifactId>vaadin-themes</artifactId>
  34. <version>${project.version}</version>
  35. <scope>provided</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>${project.groupId}</groupId>
  39. <artifactId>vaadin-server</artifactId>
  40. <version>${project.version}</version>
  41. <scope>provided</scope>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-dependency-plugin</artifactId>
  49. <version>2.10</version>
  50. <executions>
  51. <execution>
  52. <id>unpack</id>
  53. <phase>prepare-package</phase>
  54. <goals>
  55. <goal>unpack</goal>
  56. </goals>
  57. <configuration>
  58. <artifactItems>
  59. <artifactItem>
  60. <groupId>com.vaadin</groupId>
  61. <artifactId>vaadin-push</artifactId>
  62. <includes>VAADIN/vaadinPush.js, VAADIN/vaadinPush.debug.js</includes>
  63. </artifactItem>
  64. <artifactItem>
  65. <groupId>com.vaadin</groupId>
  66. <artifactId>vaadin-client-compiled</artifactId>
  67. <includes>VAADIN/widgetsets/**/*</includes>
  68. </artifactItem>
  69. <artifactItem>
  70. <groupId>com.vaadin</groupId>
  71. <artifactId>vaadin-themes</artifactId>
  72. <includes>
  73. VAADIN/themes/base/**,
  74. VAADIN/themes/chameleon/**,
  75. VAADIN/themes/liferay/**,
  76. VAADIN/themes/runo/**,
  77. VAADIN/themes/reindeer/**
  78. </includes>
  79. </artifactItem>
  80. <artifactItem>
  81. <groupId>com.vaadin</groupId>
  82. <artifactId>vaadin-server</artifactId>
  83. <includes>VAADIN/vaadinBootstrap.js</includes>
  84. </artifactItem>
  85. </artifactItems>
  86. </configuration>
  87. </execution>
  88. </executions>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-assembly-plugin</artifactId>
  93. <version>2.6</version>
  94. <executions>
  95. <execution>
  96. <phase>package</phase>
  97. <goals>
  98. <goal>single</goal>
  99. </goals>
  100. </execution>
  101. </executions>
  102. <configuration>
  103. <archive>
  104. <addMavenDescriptor>false</addMavenDescriptor>
  105. </archive>
  106. <appendAssemblyId>false</appendAssemblyId>
  107. <descriptors>
  108. <descriptor>liferay-assembly-descriptor.xml</descriptor>
  109. </descriptors>
  110. </configuration>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-deploy-plugin</artifactId>
  115. <version>2.7</version>
  116. <configuration>
  117. <skip>true</skip>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. </project>