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

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