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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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-api</artifactId>
  49. <version>${project.version}</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <artifactId>maven-deploy-plugin</artifactId>
  56. <configuration>
  57. <skip>${skip.uitest.deployment}</skip>
  58. </configuration>
  59. </plugin>
  60. <plugin>
  61. <artifactId>maven-surefire-plugin</artifactId>
  62. <configuration>
  63. <skip>true</skip>
  64. </configuration>
  65. </plugin>
  66. <plugin>
  67. <groupId>org.codehaus.mojo</groupId>
  68. <artifactId>animal-sniffer-maven-plugin</artifactId>
  69. <configuration>
  70. <skip>true</skip>
  71. </configuration>
  72. </plugin>
  73. </plugins>
  74. <pluginManagement>
  75. <plugins>
  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. <plugin>
  84. <artifactId>maven-javadoc-plugin</artifactId>
  85. <configuration>
  86. <skip>true</skip>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </pluginManagement>
  91. </build>
  92. <profiles>
  93. <profile>
  94. <!-- Profile used to deploy the uitest-common jar for testing -->
  95. <id>dev-build</id>
  96. <activation>
  97. <activeByDefault>false</activeByDefault>
  98. </activation>
  99. <properties>
  100. <skip.uitest.deployment>false</skip.uitest.deployment>
  101. </properties>
  102. </profile>
  103. </profiles>
  104. </project>