Skip to content
Snippets Groups Projects
Commit a498ced1 authored by Christopher Bohn's avatar Christopher Bohn :thinking:
Browse files

Updated pom.xml to keep current Maven version satisfied

parent 996f4a81
No related branches found
No related tags found
No related merge requests found
...@@ -7,12 +7,31 @@ ...@@ -7,12 +7,31 @@
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<name>lemonade_stand</name> <name>lemonade_stand</name>
<url>http://maven.apache.org</url> <url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.1</version> <version>4.13</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment