|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + 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 | + |
| 6 | + <groupId>io.elastest</groupId> |
| 7 | + <artifactId>junit5-qe-openvidu</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>junit5-qe-openvidu</name> |
| 12 | + <url>http://maven.apache.org</url> |
| 13 | + |
| 14 | + <organization> |
| 15 | + <name>ElasTest</name> |
| 16 | + <url>https://elastest.io</url> |
| 17 | + </organization> |
| 18 | + |
| 19 | + <developers> |
| 20 | + <developer> |
| 21 | + <id>elastest.io</id> |
| 22 | + <name>-elastest.io Community</name> |
| 23 | + <organization>elastest.io</organization> |
| 24 | + <organizationUrl>https://elastest.io</organizationUrl> |
| 25 | + </developer> |
| 26 | + |
| 27 | + <developer> |
| 28 | + <id>codeurjc</id> |
| 29 | + <name>-CodeURJC</name> |
| 30 | + <organization>CodeURJC</organization> |
| 31 | + <organizationUrl>https://www.codeurjc.es</organizationUrl> |
| 32 | + </developer> |
| 33 | + </developers> |
| 34 | + |
| 35 | + <parent> |
| 36 | + <groupId>org.springframework.boot</groupId> |
| 37 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 38 | + <version>1.5.8.RELEASE</version> |
| 39 | + </parent> |
| 40 | + |
| 41 | + |
| 42 | + <properties> |
| 43 | + <!-- Java 8 --> |
| 44 | + <java.version>1.8</java.version> |
| 45 | + <maven.compiler.source>${java.version}</maven.compiler.source> |
| 46 | + <maven.compiler.target>${java.version}</maven.compiler.target> |
| 47 | + |
| 48 | + <!-- Encoding --> |
| 49 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 50 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 51 | + |
| 52 | + <!-- Test dependencies version --> |
| 53 | + <org.selenium.driver>3.14.0</org.selenium.driver> |
| 54 | + </properties> |
| 55 | + |
| 56 | + <dependencies> |
| 57 | + <dependency> |
| 58 | + <groupId>org.junit.jupiter</groupId> |
| 59 | + <artifactId>junit-jupiter-engine</artifactId> |
| 60 | + <version>5.5.1</version> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>io.github.bonigarcia</groupId> |
| 64 | + <artifactId>webdrivermanager</artifactId> |
| 65 | + <version>3.6.2</version> |
| 66 | + </dependency> |
| 67 | + |
| 68 | + |
| 69 | + <dependency> |
| 70 | + <groupId>org.seleniumhq.selenium</groupId> |
| 71 | + <artifactId>htmlunit-driver</artifactId> |
| 72 | + <version>2.32.1</version> |
| 73 | + </dependency> |
| 74 | + |
| 75 | + <dependency> |
| 76 | + <groupId>org.seleniumhq.selenium</groupId> |
| 77 | + <artifactId>selenium-api</artifactId> |
| 78 | + <version>${org.selenium.driver}</version> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.seleniumhq.selenium</groupId> |
| 82 | + <artifactId>selenium-chrome-driver</artifactId> |
| 83 | + <version>${org.selenium.driver}</version> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>org.seleniumhq.selenium</groupId> |
| 87 | + <artifactId>selenium-firefox-driver</artifactId> |
| 88 | + <version>${org.selenium.driver}</version> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>org.seleniumhq.selenium</groupId> |
| 92 | + <artifactId>selenium-ie-driver</artifactId> |
| 93 | + <version>${org.selenium.driver}</version> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>org.seleniumhq.selenium</groupId> |
| 97 | + <artifactId>selenium-java</artifactId> |
| 98 | + <version>${org.selenium.driver}</version> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>org.seleniumhq.selenium</groupId> |
| 102 | + <artifactId>selenium-remote-driver</artifactId> |
| 103 | + <version>${org.selenium.driver}</version> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>org.seleniumhq.selenium</groupId> |
| 107 | + <artifactId>selenium-safari-driver</artifactId> |
| 108 | + <version>${org.selenium.driver}</version> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>org.seleniumhq.selenium</groupId> |
| 112 | + <artifactId>selenium-support</artifactId> |
| 113 | + <version>${org.selenium.driver}</version> |
| 114 | + </dependency> |
| 115 | + |
| 116 | + |
| 117 | + <!-- AWS cloudformation --> |
| 118 | + <dependency> |
| 119 | + <groupId>com.amazonaws</groupId> |
| 120 | + <artifactId>aws-java-sdk-cloudformation</artifactId> |
| 121 | + <version>1.11.600</version> |
| 122 | + </dependency> |
| 123 | + |
| 124 | + <dependency> |
| 125 | + <groupId>org.slf4j</groupId> |
| 126 | + <artifactId>slf4j-simple</artifactId> |
| 127 | + <version>1.7.21</version> |
| 128 | + </dependency> |
| 129 | + |
| 130 | + <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime --> |
| 131 | + <dependency> |
| 132 | + <groupId>org.apache.httpcomponents</groupId> |
| 133 | + <artifactId>httpmime</artifactId> |
| 134 | + <version>4.5.10</version> |
| 135 | + </dependency> |
| 136 | + |
| 137 | + </dependencies> |
| 138 | + |
| 139 | + |
| 140 | + <!-- Plugins --> |
| 141 | + <build> |
| 142 | + <sourceDirectory>src/main/java</sourceDirectory> |
| 143 | + <plugins> |
| 144 | + <plugin> |
| 145 | + <artifactId>maven-surefire-plugin</artifactId> |
| 146 | + <version>2.22.1</version> |
| 147 | + </plugin> |
| 148 | + <plugin> |
| 149 | + <groupId>org.springframework.boot</groupId> |
| 150 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 151 | + <executions> |
| 152 | + <execution> |
| 153 | + <goals> |
| 154 | + <goal>repackage</goal> |
| 155 | + </goals> |
| 156 | + </execution> |
| 157 | + </executions> |
| 158 | + </plugin> |
| 159 | + </plugins> |
| 160 | + </build> |
| 161 | +</project> |
0 commit comments