Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed Oct 19, 2017
1 parent e9219bf commit 5b1c22c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ repositories {
dependencies {
compile libraries.springboot,
libraries.tools,
libraries.graphql,
libraries.database
}

Expand Down
7 changes: 5 additions & 2 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ libraries.springboot = [
libraries.tools = [
'org.projectlombok:lombok:1.16.8',
'org.apache.commons:commons-lang3:3.5',
'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.4.0',
'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.4.0'
]


libraries.graphql = [
'com.graphql-java:graphql-spring-boot-starter:3.9.1',
'com.graphql-java:graphiql-spring-boot-starter:3.9.1',
'com.graphql-java:graphql-java-tools:4.1.1'
]

libraries.database = [
'com.h2database:h2'
]
3 changes: 1 addition & 2 deletions src/main/java/demo/Application.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package demo;

//import com.oembedler.moon.graphql.boot.SchemaParserDictionary;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand All @@ -9,7 +8,7 @@
public class Application {

public static void main(String[] args) {
SpringApplication.run(Application.class, args); //NOSONAR
SpringApplication.run(Application.class, args);
}

}

0 comments on commit 5b1c22c

Please sign in to comment.