Skip to content

Commit 903aa74

Browse files
author
oxyjonas
authored
Add files via upload
1 parent 6843371 commit 903aa74

1 file changed

Lines changed: 106 additions & 0 deletions

File tree

pom.xml

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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.oxylabs</groupId>
7+
<artifactId>selenium-proxy</artifactId>
8+
<version>1.0</version>
9+
10+
<name>selenium-proxy</name>
11+
<dependencies>
12+
<dependency>
13+
<groupId>org.seleniumhq.selenium</groupId>
14+
<artifactId>selenium-api</artifactId>
15+
<version>4.0.0</version>
16+
</dependency>
17+
<dependency>
18+
<groupId>org.seleniumhq.selenium</groupId>
19+
<artifactId>selenium-chrome-driver</artifactId>
20+
<version>4.0.0</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>net.lightbody.bmp</groupId>
24+
<artifactId>browsermob-core</artifactId>
25+
<version>2.1.5</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>io.github.bonigarcia</groupId>
29+
<artifactId>webdrivermanager</artifactId>
30+
<version>5.0.2</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.slf4j</groupId>
34+
<artifactId>slf4j-simple</artifactId>
35+
<version>1.7.32</version>
36+
</dependency>
37+
</dependencies>
38+
39+
<properties>
40+
<maven.compiler.source>17</maven.compiler.source>
41+
<maven.compiler.target>17</maven.compiler.target>
42+
</properties>
43+
<build>
44+
<finalName>oxylabs.io</finalName>
45+
<plugins>
46+
<plugin>
47+
<artifactId>maven-clean-plugin</artifactId>
48+
<version>3.1.0</version>
49+
</plugin>
50+
<plugin>
51+
<artifactId>maven-resources-plugin</artifactId>
52+
<version>3.0.2</version>
53+
</plugin>
54+
<plugin>
55+
<artifactId>maven-compiler-plugin</artifactId>
56+
<version>3.8.0</version>
57+
</plugin>
58+
<plugin>
59+
<artifactId>maven-surefire-plugin</artifactId>
60+
<version>2.22.1</version>
61+
</plugin>
62+
<plugin>
63+
<artifactId>maven-jar-plugin</artifactId>
64+
<version>3.0.2</version>
65+
</plugin>
66+
<plugin>
67+
<artifactId>maven-install-plugin</artifactId>
68+
<version>2.5.2</version>
69+
</plugin>
70+
<plugin>
71+
<artifactId>maven-deploy-plugin</artifactId>
72+
<version>2.8.2</version>
73+
</plugin>
74+
<plugin>
75+
<artifactId>maven-site-plugin</artifactId>
76+
<version>3.7.1</version>
77+
</plugin>
78+
<plugin>
79+
<artifactId>maven-project-info-reports-plugin</artifactId>
80+
<version>3.1.2</version>
81+
</plugin>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-assembly-plugin</artifactId>
85+
<version>3.1.1</version>
86+
<configuration>
87+
<descriptorRefs>
88+
<descriptorRef>jar-with-dependencies</descriptorRef>
89+
</descriptorRefs>
90+
</configuration>
91+
92+
<executions>
93+
<execution>
94+
<id>make-assembly</id>
95+
<phase>package</phase>
96+
<goals>
97+
<goal>single</goal>
98+
</goals>
99+
</execution>
100+
</executions>
101+
102+
</plugin>
103+
104+
</plugins>
105+
</build>
106+
</project>

0 commit comments

Comments
 (0)