Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Gary Wu | b6e35ac | 2018-08-24 15:32:28 -0700 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 5 | <groupId>org.onap.vid</groupId> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 6 | <artifactId>automationTest</artifactId> |
| 7 | <version>1.0-SNAPSHOT</version> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 8 | <properties> |
Ittay Stern | fb924bf | 2020-02-26 18:26:07 +0200 | [diff] [blame] | 9 | <springframework.version>5.2.3.RELEASE</springframework.version> |
Einat Vinouze | 83157b3 | 2019-07-11 16:25:44 +0300 | [diff] [blame] | 10 | <jersey.version>2.29</jersey.version> |
Ittay Stern | db98c79 | 2019-07-17 18:02:48 +0300 | [diff] [blame] | 11 | <jackson.version>2.9.9</jackson.version> |
Amichai Hemli | 9879461 | 2019-09-16 10:53:47 +0300 | [diff] [blame] | 12 | <jackson.databind.version>2.9.9.3</jackson.databind.version> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 13 | <aspectj.version>1.8.10</aspectj.version> |
Ittay Stern | 040dada | 2019-12-31 19:09:31 +0200 | [diff] [blame] | 14 | <selenium.version>3.141.59</selenium.version> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 15 | <log4j.version>2.13.0</log4j.version> |
| 16 | <apachehttp.version>4.5.11</apachehttp.version> |
Gary Wu | b6e35ac | 2018-08-24 15:32:28 -0700 | [diff] [blame] | 17 | |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 18 | </properties> |
| 19 | |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 20 | <dependencies> |
| 21 | <dependency> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 22 | <groupId>com.google.guava</groupId> |
| 23 | <artifactId>guava</artifactId> |
Ittay Stern | 97960cd | 2020-02-26 18:42:55 +0200 | [diff] [blame] | 24 | <version>28.2-jre</version> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 25 | </dependency> |
| 26 | <dependency> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 27 | <groupId>org.apache.logging.log4j</groupId> |
| 28 | <artifactId>log4j-api</artifactId> |
| 29 | <version>${log4j.version}</version> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>org.apache.logging.log4j</groupId> |
| 33 | <artifactId>log4j-core</artifactId> |
| 34 | <version>${log4j.version}</version> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 35 | </dependency> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 36 | <dependency> |
Ittay Stern | db98c79 | 2019-07-17 18:02:48 +0300 | [diff] [blame] | 37 | <groupId>org.apache.logging.log4j</groupId> |
| 38 | <artifactId>log4j-1.2-api</artifactId> |
| 39 | <version>${log4j.version}</version> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>javax.ws.rs</groupId> |
| 43 | <artifactId>javax.ws.rs-api</artifactId> |
| 44 | <version>2.0.1</version> |
| 45 | </dependency> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 46 | |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 47 | <dependency> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 48 | <groupId>com.aventstack</groupId> |
| 49 | <artifactId>extentreports</artifactId> |
Ittay Stern | 06b0edf | 2020-01-20 12:41:08 +0200 | [diff] [blame] | 50 | <version>3.1.5</version> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 51 | </dependency> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 52 | |
| 53 | <dependency> |
| 54 | <groupId>ch.qos.logback</groupId> |
| 55 | <artifactId>logback-classic</artifactId> |
| 56 | <version>LATEST</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>com.github.markusbernhardt</groupId> |
| 60 | <artifactId>proxy-vole</artifactId> |
| 61 | <version>1.0.2</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.httpcomponents</groupId> |
| 65 | <artifactId>httpclient</artifactId> |
| 66 | <version>${apachehttp.version}</version> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.apache.httpcomponents</groupId> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 70 | <artifactId>httpmime</artifactId> |
| 71 | <version>${apachehttp.version}</version> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>com.paulhammant</groupId> |
| 75 | <artifactId>ngwebdriver</artifactId> |
| 76 | <version>0.9.7</version> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.yaml</groupId> |
| 80 | <artifactId>snakeyaml</artifactId> |
Ittay Stern | 904eaac | 2020-02-26 18:50:28 +0200 | [diff] [blame] | 81 | <version>1.25</version> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>joda-time</groupId> |
| 85 | <artifactId>joda-time</artifactId> |
| 86 | <version>2.9.9</version> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>net.lightbody.bmp</groupId> |
| 90 | <artifactId>browsermob-core</artifactId> |
| 91 | <version>2.1.4</version> |
| 92 | </dependency> |
| 93 | <dependency> |
Ittay Stern | db98c79 | 2019-07-17 18:02:48 +0300 | [diff] [blame] | 94 | <groupId>junit</groupId> |
| 95 | <artifactId>junit</artifactId> |
| 96 | <version>RELEASE</version> |
| 97 | </dependency> |
| 98 | |
| 99 | <dependency> |
| 100 | <groupId>org.seleniumhq.selenium</groupId> |
| 101 | <artifactId>selenium-java</artifactId> |
| 102 | <version>${selenium.version}</version> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.seleniumhq.selenium</groupId> |
| 106 | <artifactId>selenium-server</artifactId> |
| 107 | <version>${selenium.version}</version> |
| 108 | <scope>runtime</scope> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>org.seleniumhq.selenium</groupId> |
| 113 | <artifactId>selenium-api</artifactId> |
| 114 | <version>${selenium.version}</version> |
| 115 | </dependency> |
| 116 | <dependency> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 117 | <groupId>org.functionaljava</groupId> |
| 118 | <artifactId>functionaljava</artifactId> |
| 119 | <version>RELEASE</version> |
| 120 | </dependency> |
Ittay Stern | db98c79 | 2019-07-17 18:02:48 +0300 | [diff] [blame] | 121 | <dependency> |
| 122 | <groupId>org.testng</groupId> |
| 123 | <artifactId>testng</artifactId> |
| 124 | <version>6.14.3</version> |
| 125 | </dependency> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 126 | <dependency> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 127 | <groupId>org.glassfish.jersey.core</groupId> |
| 128 | <artifactId>jersey-common</artifactId> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 129 | <version>${jersey.version}</version> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.glassfish.jersey.core</groupId> |
| 133 | <artifactId>jersey-client</artifactId> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 134 | <version>${jersey.version}</version> |
| 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>org.glassfish.jersey.media</groupId> |
| 138 | <artifactId>jersey-media-json-jackson</artifactId> |
| 139 | <version>${jersey.version}</version> |
| 140 | </dependency> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 141 | <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found--> |
| 142 | <dependency> |
| 143 | <groupId>org.glassfish.jersey.inject</groupId> |
| 144 | <artifactId>jersey-hk2</artifactId> |
| 145 | <version>${jersey.version}</version> |
| 146 | </dependency> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 147 | <dependency> |
| 148 | <groupId>com.fasterxml.jackson.core</groupId> |
| 149 | <artifactId>jackson-annotations</artifactId> |
| 150 | <version>${jackson.version}</version> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>com.fasterxml.jackson.core</groupId> |
| 154 | <artifactId>jackson-core</artifactId> |
| 155 | <version>${jackson.version}</version> |
| 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>com.fasterxml.jackson.core</groupId> |
| 159 | <artifactId>jackson-databind</artifactId> |
Amichai Hemli | 9879461 | 2019-09-16 10:53:47 +0300 | [diff] [blame] | 160 | <version>${jackson.databind.version}</version> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>commons-beanutils</groupId> |
| 164 | <artifactId>commons-beanutils</artifactId> |
Ittay Stern | 6c2d093 | 2019-12-15 18:33:18 +0200 | [diff] [blame] | 165 | <version>1.9.4</version> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>org.springframework</groupId> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 169 | <artifactId>spring-web</artifactId> |
| 170 | <version>${springframework.version}</version> |
| 171 | </dependency> |
| 172 | <dependency> |
| 173 | <groupId>org.skyscreamer</groupId> |
| 174 | <artifactId>jsonassert</artifactId> |
| 175 | <version>1.5.0</version> |
| 176 | </dependency> |
| 177 | <dependency> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 178 | <groupId>commons-io</groupId> |
| 179 | <artifactId>commons-io</artifactId> |
| 180 | <version>2.5</version> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.mariadb.jdbc</groupId> |
| 184 | <artifactId>mariadb-java-client</artifactId> |
| 185 | <version>1.4.6</version> |
| 186 | </dependency> |
| 187 | <dependency> |
| 188 | <groupId>org.hamcrest</groupId> |
Ittay Stern | 2cfa122 | 2019-10-23 01:12:21 +0300 | [diff] [blame] | 189 | <artifactId>java-hamcrest</artifactId> |
| 190 | <version>2.0.0.0</version> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 191 | </dependency> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 192 | <dependency> |
| 193 | <groupId>org.apache.commons</groupId> |
| 194 | <artifactId>commons-text</artifactId> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 195 | <version>1.8</version> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 196 | </dependency> |
| 197 | <dependency> |
| 198 | <groupId>org.apache.commons</groupId> |
| 199 | <artifactId>commons-lang3</artifactId> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 200 | <version>3.9</version> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 201 | </dependency> |
| 202 | <dependency> |
Ittay Stern | db98c79 | 2019-07-17 18:02:48 +0300 | [diff] [blame] | 203 | <groupId>org.apache.commons</groupId> |
| 204 | <artifactId>commons-proxy</artifactId> |
| 205 | <version>1.0</version> |
| 206 | </dependency> |
| 207 | |
| 208 | <dependency> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 209 | <groupId>net.javacrumbs.json-unit</groupId> |
| 210 | <artifactId>json-unit</artifactId> |
Ittay Stern | 66af8b9 | 2019-03-11 09:34:34 +0200 | [diff] [blame] | 211 | <version>2.2.0</version> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 212 | </dependency> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 213 | <dependency> |
| 214 | <groupId>org.togglz</groupId> |
| 215 | <artifactId>togglz-spring-core</artifactId> |
| 216 | <version>2.5.0.Final</version> |
| 217 | </dependency> |
| 218 | <dependency> |
| 219 | <groupId>javax.enterprise</groupId> |
| 220 | <artifactId>cdi-api</artifactId> |
| 221 | <version>1.0</version> |
| 222 | </dependency> |
| 223 | <dependency> |
Ittay Stern | f4dff32 | 2019-07-08 15:46:44 +0300 | [diff] [blame] | 224 | <groupId>net.code-story</groupId> |
| 225 | <artifactId>http</artifactId> |
| 226 | <version>2.105</version> |
| 227 | <scope>test</scope> |
| 228 | </dependency> |
| 229 | <dependency> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 230 | <groupId>javax.xml.bind</groupId> |
| 231 | <artifactId>jaxb-api</artifactId> |
| 232 | <version>2.2.11</version> |
| 233 | </dependency> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 234 | </dependencies> |
| 235 | <build> |
| 236 | <plugins> |
| 237 | <plugin> |
| 238 | <groupId>org.apache.maven.plugins</groupId> |
| 239 | <artifactId>maven-compiler-plugin</artifactId> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 240 | <version>3.8.1</version> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 241 | <configuration> |
| 242 | <source>1.8</source> |
| 243 | <target>1.8</target> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 244 | <debug>true</debug> |
| 245 | <debuglevel>lines,vars,source</debuglevel> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 246 | </configuration> |
| 247 | </plugin> |
| 248 | <plugin> |
| 249 | <groupId>org.apache.maven.plugins</groupId> |
| 250 | <artifactId>maven-assembly-plugin</artifactId> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 251 | <version>3.2.0</version> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 252 | <executions> |
| 253 | <execution> |
| 254 | <id>create.jar.with.dependencies</id> |
| 255 | <phase>package</phase> |
| 256 | <goals> |
| 257 | <goal>single</goal> |
| 258 | </goals> |
| 259 | <configuration> |
| 260 | <archive> |
| 261 | <manifest> |
| 262 | <mainClass>vid.automation.test.StartTest</mainClass> |
| 263 | </manifest> |
| 264 | </archive> |
| 265 | <descriptorRefs> |
| 266 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 267 | </descriptorRefs> |
| 268 | </configuration> |
| 269 | </execution> |
| 270 | </executions> |
| 271 | </plugin> |
Ittay Stern | 9ba4d06 | 2020-02-27 13:40:28 +0200 | [diff] [blame] | 272 | <plugin> |
| 273 | <groupId>org.apache.maven.plugins</groupId> |
| 274 | <artifactId>maven-surefire-plugin</artifactId> |
| 275 | <version>2.22.2</version> |
| 276 | <configuration> |
| 277 | <includes> |
| 278 | <include>${test}</include> |
| 279 | </includes> |
| 280 | <systemPropertyVariables> |
| 281 | <log4j.configurationFile>./conf/log4j2.xml</log4j.configurationFile> |
| 282 | </systemPropertyVariables> |
| 283 | <suiteXmlFiles> |
| 284 | <suiteXmlFile>TestNg-ApiTest.xml</suiteXmlFile> |
| 285 | </suiteXmlFiles> |
| 286 | <argLine> |
| 287 | -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar |
| 288 | </argLine> |
| 289 | <useSystemClassLoader>false</useSystemClassLoader> |
| 290 | </configuration> |
Sonsino, Ofir (os0695) | 4a4dcc5 | 2018-08-12 14:51:28 +0300 | [diff] [blame] | 291 | </plugin> |
Ofir Sonsino | 1cfb087 | 2018-01-31 17:19:00 +0200 | [diff] [blame] | 292 | </plugins> |
| 293 | </build> |
Gary Wu | b6e35ac | 2018-08-24 15:32:28 -0700 | [diff] [blame] | 294 | </project> |