Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 2743abe

Browse files
committed
Moved sample tools to different package because of conflict
1 parent 529f2f3 commit 2743abe

File tree

10 files changed

+10
-9
lines changed

10 files changed

+10
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oembedler.moon.graphql.boot.resolvers;
1+
package com.graphql.sample.boot;
22

33
class Comment {
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oembedler.moon.graphql.boot;
1+
package com.graphql.sample.boot;
22

33
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
44
import graphql.servlet.ObjectMapperConfigurer;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oembedler.moon.graphql.boot.resolvers;
1+
package com.graphql.sample.boot;
22

33
import com.coxautodev.graphql.tools.GraphQLMutationResolver;
44
import java.util.Random;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oembedler.moon.graphql.boot.resolvers;
1+
package com.graphql.sample.boot;
22

33
public class Post {
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oembedler.moon.graphql.boot.resolvers;
1+
package com.graphql.sample.boot;
22

33
import com.coxautodev.graphql.tools.GraphQLResolver;
44
import org.springframework.stereotype.Component;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oembedler.moon.graphql.boot.resolvers;
1+
package com.graphql.sample.boot;
22

33
import com.coxautodev.graphql.tools.GraphQLQueryResolver;
44
import org.springframework.stereotype.Component;

example-graphql-tools/src/test/java/com/oembedler/moon/graphql/boot/GraphQLServletTest.kt renamed to example-graphql-tools/src/test/java/com/graphql/sample/boot/GraphQLServletTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oembedler.moon.graphql.boot
1+
package com.graphql.sample.boot
22

33

44
import com.graphql.spring.boot.test.GraphQLTestTemplate
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oembedler.moon.graphql.boot;
1+
package com.graphql.sample.boot;
22

33
import com.fasterxml.jackson.databind.ObjectMapper;
44
import com.fasterxml.jackson.databind.node.ObjectNode;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oembedler.moon.graphql.boot;
1+
package com.graphql.sample.boot;
22

33
import org.junit.Ignore;
44
import org.junit.Test;

graphql-spring-boot-autoconfigure/src/main/java/com/oembedler/moon/graphql/boot/GraphQLJavaToolsAutoConfiguration.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
@Configuration
3030
@ConditionalOnClass(SchemaParser.class)
3131
@AutoConfigureAfter({JacksonAutoConfiguration.class})
32+
@EnableConfigurationProperties(GraphQLToolsProperties.class)
3233
public class GraphQLJavaToolsAutoConfiguration {
3334

3435
@Autowired(required = false)

0 commit comments

Comments
 (0)