From a498ced1e347376c5318d6109cc438563a3acdc2 Mon Sep 17 00:00:00 2001 From: Christopher Bohn <bohn@unl.edu> Date: Mon, 27 Sep 2021 15:17:19 -0500 Subject: [PATCH] Updated pom.xml to keep current Maven version satisfied --- pom.xml | 35 +++++++++++++++++++++++++++-------- 1 file changed, 27 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index bf06c50..9dda763 100644 --- a/pom.xml +++ b/pom.xml @@ -7,12 +7,31 @@ <version>1.0-SNAPSHOT</version> <name>lemonade_stand</name> <url>http://maven.apache.org</url> - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> - </dependency> - </dependencies> + + <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> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.13</version> + <scope>test</scope> + </dependency> + </dependencies> </project> + -- GitLab