-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
92 lines (79 loc) · 3.05 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ogr.user12043</groupId>
<artifactId>lanShare</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>lanShare Maven WebApp</name>
<url>http://maven.apache.org</url>
<properties>
<!--Describe compiler version-->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!--Encodings-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!--Custom properties-->
<servlet-version>4.0.1</servlet-version>
<jetty-version>9.4.12.v20180830</jetty-version>
<selenium-version>3.141.59</selenium-version>
<http.port>8181</http.port>
</properties>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet-version}</version>
</dependency>
<!--TEST-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium-version}</version>
</dependency>
</dependencies>
<build>
<finalName>lanShare</finalName>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty-version}</version>
<configuration>
<!--Http configuration-->
<httpConnector>
<port>${http.port}</port>
<!--Listening host (0.0.0.0 for all)-->
<host>0.0.0.0</host>
<name>LanShare</name>
</httpConnector>
<!--Scan interval for file changes (0 to disable)-->
<scanIntervalSeconds>10</scanIntervalSeconds>
<!--Automatic reload (default "automatic")-->
<reload>manual</reload>
<!--Dump out the server structure-->
<!--<dumpOnStart>false</dumpOnStart>-->
<webApp>
<!--context path after url (E.g localhost:8080/lanShare)-->
<contextPath>/lanShare</contextPath>
<!--web.xml file location-->
<!--<descriptor>/src/main/webapp/WEB-INF/web.xml</descriptor>-->
<!--additional web.xml-->
<!--<overrideDescriptor>/src/main/webapp/WEB-INF/webOverride.xml</overrideDescriptor>-->
<!--path to static resources-->
<!--<baseResource>/src/main/webapp</baseResource>-->
<!--Can use multiple resource directories to serve static content-->
<!--<resourceBases>/staticFiles</resourceBases>-->
</webApp>
</configuration>
</plugin>
</plugins>
</build>
</project>