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

example-graphql-tools/src/main/java/com/oembedler/moon/graphql/boot/resolvers/Comment.java renamed to example-graphql-tools/src/main/java/com/graphql/sample/boot/Comment.java

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

example-graphql-tools/src/main/java/com/oembedler/moon/graphql/boot/GraphQLToolsSampleApplication.java renamed to example-graphql-tools/src/main/java/com/graphql/sample/boot/GraphQLToolsSampleApplication.java

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;

example-graphql-tools/src/main/java/com/oembedler/moon/graphql/boot/resolvers/Mutation.java renamed to example-graphql-tools/src/main/java/com/graphql/sample/boot/Mutation.java

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;

example-graphql-tools/src/main/java/com/oembedler/moon/graphql/boot/resolvers/Post.java renamed to example-graphql-tools/src/main/java/com/graphql/sample/boot/Post.java

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

example-graphql-tools/src/main/java/com/oembedler/moon/graphql/boot/resolvers/PostResolver.java renamed to example-graphql-tools/src/main/java/com/graphql/sample/boot/PostResolver.java

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;

example-graphql-tools/src/main/java/com/oembedler/moon/graphql/boot/resolvers/Query.java renamed to example-graphql-tools/src/main/java/com/graphql/sample/boot/Query.java

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

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

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;

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

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)