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.1KB

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. <artifactId>maven-dependency-plugin</artifactId>
  48. <executions>
  49. <execution>
  50. <id>unpack</id>
  51. <phase>prepare-package</phase>
  52. <goals>
  53. <goal>unpack</goal>
  54. </goals>
  55. <configuration>
  56. <artifactItems>
  57. <artifactItem>
  58. <groupId>com.vaadin</groupId>
  59. <artifactId>vaadin-push</artifactId>
  60. <includes>VAADIN/vaadinPush.js, VAADIN/vaadinPush.debug.js</includes>
  61. </artifactItem>
  62. <artifactItem>
  63. <groupId>com.vaadin</groupId>
  64. <artifactId>vaadin-client-compiled</artifactId>
  65. <includes>VAADIN/widgetsets/**/*</includes>
  66. </artifactItem>
  67. <artifactItem>
  68. <groupId>com.vaadin</groupId>
  69. <artifactId>vaadin-themes</artifactId>
  70. <includes>
  71. VAADIN/themes/base/**,
  72. VAADIN/themes/chameleon/**,
  73. VAADIN/themes/liferay/**,
  74. VAADIN/themes/runo/**,
  75. VAADIN/themes/reindeer/**
  76. </includes>
  77. </artifactItem>
  78. <artifactItem>
  79. <groupId>com.vaadin</groupId>
  80. <artifactId>vaadin-server</artifactId>
  81. <includes>VAADIN/vaadinBootstrap.js</includes>
  82. </artifactItem>
  83. </artifactItems>
  84. </configuration>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. <plugin>
  89. <artifactId>maven-assembly-plugin</artifactId>
  90. <executions>
  91. <execution>
  92. <phase>package</phase>
  93. <goals>
  94. <goal>single</goal>
  95. </goals>
  96. </execution>
  97. </executions>
  98. <configuration>
  99. <archive>
  100. <addMavenDescriptor>false</addMavenDescriptor>
  101. </archive>
  102. <appendAssemblyId>false</appendAssemblyId>
  103. <descriptors>
  104. <descriptor>liferay-assembly-descriptor.xml</descriptor>
  105. </descriptors>
  106. </configuration>
  107. </plugin>
  108. <plugin>
  109. <artifactId>maven-deploy-plugin</artifactId>
  110. <configuration>
  111. <skip>true</skip>
  112. </configuration>
  113. </plugin>
  114. <plugin>
  115. <artifactId>maven-install-plugin</artifactId>
  116. <configuration>
  117. <skip>true</skip>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. </project>