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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. <artifactId>vaadin-uitest-common</artifactId>
  11. <name>vaadin-uitest-common</name>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <skip.uitest.deployment>true</skip.uitest.deployment>
  15. </properties>
  16. <url>https://vaadin.com/</url>
  17. <description>Vaadin UI test common classes and dependencies</description>
  18. <repositories>
  19. <repository>
  20. <id>vaadin-addons</id>
  21. <url>http://maven.vaadin.com/vaadin-addons</url>
  22. </repository>
  23. </repositories>
  24. <dependencies>
  25. <!-- LIBRARY DEPENDENCIES (compile time) -->
  26. <dependency>
  27. <groupId>${project.groupId}</groupId>
  28. <artifactId>vaadin-server</artifactId>
  29. <version>${project.version}</version>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>javax.servlet</groupId>
  33. <artifactId>javax.servlet-api</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <scope>compile</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-io</groupId>
  44. <artifactId>commons-io</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.vaadin</groupId>
  48. <artifactId>vaadin-testbench</artifactId>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <artifactId>maven-deploy-plugin</artifactId>
  55. <configuration>
  56. <skip>${skip.uitest.deployment}</skip>
  57. </configuration>
  58. </plugin>
  59. <plugin>
  60. <artifactId>maven-surefire-plugin</artifactId>
  61. <configuration>
  62. <skip>true</skip>
  63. </configuration>
  64. </plugin>
  65. <plugin>
  66. <groupId>org.codehaus.mojo</groupId>
  67. <artifactId>animal-sniffer-maven-plugin</artifactId>
  68. <configuration>
  69. <skip>true</skip>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. <pluginManagement>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.sonatype.plugins</groupId>
  77. <artifactId>nexus-staging-maven-plugin</artifactId>
  78. <configuration>
  79. <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
  80. </configuration>
  81. </plugin>
  82. <plugin>
  83. <artifactId>maven-javadoc-plugin</artifactId>
  84. <configuration>
  85. <skip>true</skip>
  86. </configuration>
  87. </plugin>
  88. </plugins>
  89. </pluginManagement>
  90. </build>
  91. <profiles>
  92. <profile>
  93. <!-- Profile used to deploy the uitest-common jar for testing -->
  94. <id>dev-build</id>
  95. <activation>
  96. <activeByDefault>false</activeByDefault>
  97. </activation>
  98. <properties>
  99. <skip.uitest.deployment>false</skip.uitest.deployment>
  100. </properties>
  101. </profile>
  102. </profiles>
  103. </project>