source: pom.xml@ 1eb7a55

Last change on this file since 1eb7a55 was 1eb7a55, checked in by Elena Markovska <elena.elenamarkovska@…>, 11 days ago

Initial commit - Scholaris project code

  • Property mode set to 100644
File size: 2.0 KB
RevLine 
[1eb7a55]1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>org.example</groupId>
5 <artifactId>Education-jsp</artifactId>
6 <packaging>war</packaging>
7 <version>1.0-SNAPSHOT</version>
8 <name>Education-jsp Maven Webapp</name>
9 <url>http://maven.apache.org</url>
10
11 <repositories>
12 <repository>
13 <id>central</id>
14 <url>https://repo.maven.apache.org/maven2</url>
15 </repository>
16 </repositories>
17
18 <dependencies>
19 <dependency>
20 <groupId>junit</groupId>
21 <artifactId>junit</artifactId>
22 <version>3.8.1</version>
23 <scope>test</scope>
24 </dependency>
25
26 <dependency>
27 <groupId>org.postgresql</groupId>
28 <artifactId>postgresql</artifactId>
29 <version>42.7.3</version>
30 </dependency>
31
32 <dependency>
33 <groupId>javax.servlet</groupId>
34 <artifactId>javax.servlet-api</artifactId>
35 <version>3.1.0</version>
36 </dependency>
37
38<!-- <dependency>-->
39<!-- <groupId>javax.servlet</groupId>-->
40<!-- <artifactId>javax.servlet-api</artifactId>-->
41<!-- <version>4.0.1</version>-->
42<!-- <scope>provided</scope>-->
43<!-- </dependency>-->
44 <dependency>
45 <groupId>javax.servlet</groupId>
46 <artifactId>jstl</artifactId>
47 <version>1.2</version>
48 </dependency>
49
50 <dependency>
51 <groupId>com.zaxxer</groupId>
52 <artifactId>HikariCP</artifactId>
53 <version>5.1.0</version>
54 </dependency>
55
56
57 </dependencies>
58
59 <build>
60 <finalName>Education-jsp</finalName>
61 <plugins>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-compiler-plugin</artifactId>
65 <version>3.13.0</version>
66 <configuration>
67 <source>11</source>
68 <target>11</target>
69 </configuration>
70 </plugin>
71 </plugins>
72
73 </build>
74</project>
75
Note: See TracBrowser for help on using the repository browser.