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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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.4-SNAPSHOT</version>
  9. </parent>
  10. <!-- Needed by a plugin in release build -->
  11. <groupId>com.vaadin</groupId>
  12. <artifactId>vaadin-buildhelpers</artifactId>
  13. <name>vaadin-buildhelpers</name>
  14. <packaging>jar</packaging>
  15. <url>https://vaadin.com/</url>
  16. <description>Vaadin build helpers</description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>commons-io</groupId>
  20. <artifactId>commons-io</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>commons-cli</groupId>
  24. <artifactId>commons-cli</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.vaadin</groupId>
  28. <artifactId>vaadin-sass-compiler</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.carrotsearch</groupId>
  32. <artifactId>smartsprites</artifactId>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <resources>
  37. <!-- Include eclipse formatting settings in the jar to make them available
  38. as a dependency for all submodules -->
  39. <resource>
  40. <directory>${project.basedir}/../eclipse</directory>
  41. <targetPath>eclipse</targetPath>
  42. </resource>
  43. </resources>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-checkstyle-plugin</artifactId>
  48. <executions>
  49. <execution>
  50. <goals>
  51. <goal>checkstyle</goal>
  52. </goals>
  53. <phase>process-sources</phase>
  54. </execution>
  55. </executions>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-jar-plugin</artifactId>
  60. <configuration>
  61. <archive>
  62. <index>false</index>
  63. <manifest>
  64. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  65. </manifest>
  66. </archive>
  67. </configuration>
  68. </plugin>
  69. <plugin>
  70. <artifactId>maven-deploy-plugin</artifactId>
  71. <configuration>
  72. <skip>true</skip>
  73. </configuration>
  74. </plugin>
  75. </plugins>
  76. <!-- Skip sources jar -->
  77. <pluginManagement>
  78. <plugins>
  79. <plugin>
  80. <artifactId>maven-source-plugin</artifactId>
  81. <configuration>
  82. <skipSource>true</skipSource>
  83. </configuration>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.sonatype.plugins</groupId>
  87. <artifactId>nexus-staging-maven-plugin</artifactId>
  88. <configuration>
  89. <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
  90. </configuration>
  91. </plugin>
  92. </plugins>
  93. </pluginManagement>
  94. </build>
  95. </project>