Commit d9dfe8d8 authored by earndt's avatar earndt

[W5D3] (ArndtED) Adds specific environment configs, h2 dependency to pom

parent 1b0eae3e
......@@ -33,6 +33,11 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
......
......@@ -8,6 +8,7 @@ public class FundamentalsApplication {
public static void main(String[] args) {
SpringApplication.run(FundamentalsApplication.class, args);
// System.out.println("Hello Pluralsight!");
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment