Skip to content

Instantly share code, notes, and snippets.

@darbyluv2code
Created February 13, 2020 06:01
Show Gist options
  • Save darbyluv2code/cf753ef8b9dd7c5a3adbec8082f6c7cd to your computer and use it in GitHub Desktop.
Save darbyluv2code/cf753ef8b9dd7c5a3adbec8082f6c7cd to your computer and use it in GitHub Desktop.
Maven pom for Spring Core
<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>org.demo</groupId>
<artifactId>spring-simple-demo</artifactId>
<version>1.0.0</version>
<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-context</artifactId>
<version>${springframework.version}</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment