0% found this document useful (0 votes)
36 views2 pages

Xmlns Xmlns:Xsi Xsi:Schemalocation: V4 - 0 - 0.Xsd"

This document contains the configuration file for a Maven project that uses Spring MVC and JDBC. It specifies dependencies on Spring, JSTL, and the MySQL connector. It also defines properties for the Java version, Spring version, and MySQL connector version. The build is configured to compile the project using Java 1.8.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views2 pages

Xmlns Xmlns:Xsi Xsi:Schemalocation: V4 - 0 - 0.Xsd"

This document contains the configuration file for a Maven project that uses Spring MVC and JDBC. It specifies dependencies on Spring, JSTL, and the MySQL connector. It also defines properties for the Java version, Spring version, and MySQL connector version. The build is configured to compile the project using Java 1.8.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

pom.

xml jueves, 15 de abril de 2021 11:04

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
5 <modelVersion>4.0.0</modelVersion>
6
7 <groupId>com.roytuts</groupId>
8 <artifactId>spring-mvc-jdbc</artifactId>
9 <packaging>war</packaging>
10 <version>0.0.1-SNAPSHOT</version>
11 <url>http://maven.apache.org</url>
12
13 <properties>
14 <java.version>1.8</java.version>
15 <spring.version>4.1.6.RELEASE</spring.version>
16 <mysqlconnector.version>5.1.34</mysqlconnector.version>
17 </properties>
18
19 <dependencies>
20 <!-- Spring -->
21 <dependency>
22 <groupId>org.springframework</groupId>
23 <artifactId>spring-context</artifactId>
24 <version>${spring.version}</version>
25 </dependency>
26
27 <dependency>
28 <groupId>org.springframework</groupId>
29 <artifactId>spring-web</artifactId>
30 <version>${spring.version}</version>
31 </dependency>
32
33 <dependency>
34 <groupId>org.springframework</groupId>
35 <artifactId>spring-webmvc</artifactId>
36 <version>${spring.version}</version>
37 </dependency>
38
39 <dependency>
40 <groupId>org.springframework</groupId>
41 <artifactId>spring-jdbc</artifactId>
42 <version>${spring.version}</version>
43 </dependency>
44
45 <dependency>
46 <groupId>javax.servlet</groupId>
47 <artifactId>javax.servlet-api</artifactId>
48 <version>3.1.0</version>
49 <scope>provided</scope>
50 </dependency>
51
52 <!-- jstl -->
53 <dependency>
54 <groupId>javax.servlet</groupId>
55 <artifactId>jstl</artifactId>
56 <version>1.2</version>
57 </dependency>
58
59 <!-- mysql java connector -->
60 <dependency>
61 <groupId>mysql</groupId>

Page 1
pom.xml jueves, 15 de abril de 2021 11:04

62 <artifactId>mysql-connector-java</artifactId>
63 <version>${mysqlconnector.version}</version>
64 </dependency>
65 </dependencies>
66
67 <build>
68 <finalName>spring-mvc-jdbc</finalName>
69 <plugins>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-compiler-plugin</artifactId>
73 <configuration>
74 <source>${java.version}</source>
75 <target>${java.version}</target>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
80 </project>
81

Page 2

You might also like