Skip to content

Commit

Permalink
Polish "Add JUnit Jupiter sample application"
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Jul 25, 2017
1 parent f1664db commit dbce7d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions spring-boot-samples/spring-boot-sample-junit-jupiter/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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>
<parent>
<!-- Your own application should inherit from spring-boot-starter-parent -->
Expand All @@ -17,17 +19,16 @@
</organization>
<properties>
<main.basedir>${basedir}/../..</main.basedir>
<junit.jupiter.version>5.0.0-M5</junit.jupiter.version>
<junit.platform.version>1.0.0-M5</junit.platform.version>
<junit.jupiter.version>5.0.0-M6</junit.jupiter.version>
<junit.platform.version>1.0.0-M6</junit.platform.version>
</properties>

<dependencies>
<!-- Compile -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Test -->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ public class SampleJunitJupiterApplication {
public static void main(String[] args) {
SpringApplication.run(SampleJunitJupiterApplication.class, args);
}

}

0 comments on commit dbce7d8

Please sign in to comment.