Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
linkedinlearning
GitHub Repository: linkedinlearning/Software-Design-Requirements-Release-2825344
Path: blob/master/red30/pom.xml
580 views
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/maven-v4_0_0.xsd">
4
<modelVersion>4.0.0</modelVersion>
5
<groupId>com.hplussport</groupId>
6
<artifactId>red30</artifactId>
7
<packaging>war</packaging>
8
<version>1</version>
9
<name>red30 Maven Webapp</name>
10
<url>http://maven.apache.org</url>
11
<dependencies>
12
<!-- https://mvnrepository.com/artifact/junit/junit -->
13
<dependency>
14
<groupId>junit</groupId>
15
<artifactId>junit</artifactId>
16
<version>4.13</version>
17
<scope>test</scope>
18
</dependency>
19
<!-- https://mvnrepository.com/artifact/javax/javaee-api -->
20
<dependency>
21
<groupId>javax</groupId>
22
<artifactId>javaee-api</artifactId>
23
<version>8.0.1</version>
24
<scope>provided</scope>
25
26
</dependency>
27
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
28
<dependency>
29
<groupId>javax.servlet</groupId>
30
<artifactId>javax.servlet-api</artifactId>
31
<version>4.0.1</version>
32
<scope>provided</scope>
33
<classifier>javadoc</classifier>
34
</dependency>
35
36
<!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
37
<dependency>
38
<groupId>javax.servlet.jsp</groupId>
39
<artifactId>javax.servlet.jsp-api</artifactId>
40
<version>2.3.3</version>
41
<scope>provided</scope>
42
<classifier>javadoc</classifier>
43
</dependency>
44
45
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
46
<dependency>
47
<groupId>mysql</groupId>
48
<artifactId>mysql-connector-java</artifactId>
49
<version>8.0.18</version>
50
</dependency>
51
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
52
<dependency>
53
<groupId>com.google.code.gson</groupId>
54
<artifactId>gson</artifactId>
55
<version>2.8.6</version>
56
</dependency>
57
<dependency>
58
<groupId>com.google.code.gson</groupId>
59
<artifactId>gson</artifactId>
60
<version>2.8.6</version>
61
<scope>provided</scope>
62
<classifier>javadoc</classifier>
63
</dependency>
64
</dependencies>
65
<build>
66
<finalName>red30</finalName>
67
<sourceDirectory>src/main/java</sourceDirectory>
68
<testSourceDirectory>src/test/java</testSourceDirectory>
69
<plugins>
70
<plugin>
71
<artifactId>maven-compiler-plugin</artifactId>
72
<version>3.8.0</version>
73
<configuration>
74
<source>1.8</source>
75
<target>1.8</target>
76
</configuration>
77
</plugin>
78
<plugin>
79
<groupId>org.apache.maven.plugin</groupId>
80
<artifactId>maven-war-plugin</artifactId>
81
<version>3.2.1</version>
82
<configuration>
83
<warSourceDirectory>src/main/webapp</warSourceDirectory>
84
</configuration>
85
</plugin>
86
</plugins>
87
</build>
88
</project>
89
90