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

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