move main class to graphql package

This commit is contained in:
Loredana Crusoveanu 2021-01-07 16:30:52 +02:00
parent 481309e719
commit 28d61c77ef
2 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@
<properties>
<!-- The main class to start by executing java -jar -->
<start-class>com.baeldung.intro.App</start-class>
<start-class>com.baeldung.graphql.DemoApplication</start-class>
<tomee-servlet-api.version>8.5.11</tomee-servlet-api.version>
<togglz.version>2.4.1.Final</togglz.version>
<rome.version>1.9.0</rome.version>

View File

@ -1,4 +1,4 @@
package com.baeldung.demo;
package com.baeldung.graphql;
import com.baeldung.graphql.GraphqlConfiguration;
import org.springframework.boot.SpringApplication;