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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.vaadin</groupId>
  11. <artifactId>vaadin-buildhelpers</artifactId>
  12. <name>vaadin-buildhelpers</name>
  13. <packaging>jar</packaging>
  14. <url>https://vaadin.com/</url>
  15. <description>Vaadin build helpers</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>commons-io</groupId>
  19. <artifactId>commons-io</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>commons-cli</groupId>
  23. <artifactId>commons-cli</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.vaadin</groupId>
  27. <artifactId>vaadin-sass-compiler</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.carrotsearch</groupId>
  31. <artifactId>smartsprites</artifactId>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-checkstyle-plugin</artifactId>
  39. <executions>
  40. <execution>
  41. <goals>
  42. <goal>checkstyle</goal>
  43. </goals>
  44. <phase>process-sources</phase>
  45. </execution>
  46. </executions>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-jar-plugin</artifactId>
  51. <configuration>
  52. <archive>
  53. <index>false</index>
  54. <manifest>
  55. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  56. </manifest>
  57. </archive>
  58. </configuration>
  59. </plugin>
  60. <plugin>
  61. <artifactId>maven-deploy-plugin</artifactId>
  62. <configuration>
  63. <skip>true</skip>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. <!-- Skip sources jar -->
  68. <pluginManagement>
  69. <plugins>
  70. <plugin>
  71. <artifactId>maven-source-plugin</artifactId>
  72. <configuration>
  73. <skipSource>true</skipSource>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.sonatype.plugins</groupId>
  78. <artifactId>nexus-staging-maven-plugin</artifactId>
  79. <configuration>
  80. <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </pluginManagement>
  85. </build>
  86. </project>