Skip to content

Commit b0c0959

Browse files
committed
Updated Junit version
1 parent 5d759f8 commit b0c0959

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@
4949
<properties>
5050
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5151
<java.version>1.8</java.version>
52-
<spring.boot.version>1.4.0.RELEASE</spring.boot.version>
5352
<maven.compiler.source>${java.version}</maven.compiler.source>
5453
<maven.compiler.target>${java.version}</maven.compiler.target>
5554
</properties>
5655

5756
<dependencies>
57+
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
5858
<dependency>
59-
<groupId>junit</groupId>
60-
<artifactId>junit</artifactId>
61-
<version>4.12</version>
59+
<groupId>org.junit.jupiter</groupId>
60+
<artifactId>junit-jupiter-api</artifactId>
61+
<version>5.5.1</version>
6262
</dependency>
6363
</dependencies>
6464

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.leetcode.arrays;
2+
3+
/**
4+
* @author rampatra
5+
* @since 2019-07-27
6+
*/
7+
public class NestedListWeightSumI {
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.leetcode.maps;
2+
3+
/**
4+
* @author rampatra
5+
* @since 2019-07-29
6+
*/
7+
public class RepeatedDnaSequence {
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.leetcode.stacks;
2+
3+
/**
4+
* @author rampatra
5+
* @since 2019-07-27
6+
*/
7+
public class ReversePolishNotation {
8+
}

0 commit comments

Comments
 (0)