Created
February 13, 2020 06:00
-
-
Save darbyluv2code/20e3775b9650be27c148df9d427b2f58 to your computer and use it in GitHub Desktop.
Maven pom for Spring MVC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.luv2code.springdemo</groupId> | |
<artifactId>spring-mvc-demo-maven-xml-config</artifactId> | |
<version>1.0.0</version> | |
<packaging>war</packaging> | |
<properties> | |
<springframework.version>5.2.3.RELEASE</springframework.version> | |
<maven.compiler.source>1.8</maven.compiler.source> | |
<maven.compiler.target>1.8</maven.compiler.target> | |
</properties> | |
<dependencies> | |
<!-- Spring --> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-webmvc</artifactId> | |
<version>${springframework.version}</version> | |
</dependency> | |
<!-- Servlet+JSP+JSTL --> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>javax.servlet-api</artifactId> | |
<version>3.1.0</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.servlet.jsp</groupId> | |
<artifactId>javax.servlet.jsp-api</artifactId> | |
<version>2.3.1</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>jstl</artifactId> | |
<version>1.2</version> | |
</dependency> | |
<!-- to compensate for java 9+ not including jaxb --> | |
<dependency> | |
<groupId>javax.xml.bind</groupId> | |
<artifactId>jaxb-api</artifactId> | |
<version>2.3.0</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<finalName>spring-mvc-demo-xml-config</finalName> | |
<plugins> | |
<!-- Builds a Web Application Archive (WAR) file from the project output | |
and its dependencies. --> | |
<plugin> | |
<!-- Add Maven coordinates (GAV) for: maven-war-plugin --> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-war-plugin</artifactId> | |
<version>3.2.0</version> | |
</plugin> | |
</plugins> | |
</build> | |
</project> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment