Sunday, September 6, 2015

production deploy, still see super dev dialog

I deployed my application to tomcat on my local machine and to my surprise, I am seeing a super dev mode dialog

Couldn't load XXXXXXXX from Super Dev Mode
server at http://localhost:9876.
Please make sure this server is ready.
Do you want to try again?

How am I to turn off super dev mode for my production use case?

GWT Version: 2.7

Maven:

 <plugins>
 
           
<plugin>
               
<groupId>org.codehaus.mojo</groupId>
               
<artifactId>gwt-maven-plugin</artifactId>
               
<version>2.7.0</version>
               
<configuration>
               
<superDevMode>false</superDevMode>
               
</configuration>
                 
<executions>
         
<execution>
           
<goals>
             
<goal>compile</goal>
           
</goals>
         
</execution>
       
</executions>
           
</plugin>
           
           
<plugin>
               
<groupId>org.apache.maven.plugins</groupId>
               
<artifactId>maven-war-plugin</artifactId>
               
<version>2.3</version>
               
<configuration>
               
<failOnMissingWebXml>false</failOnMissingWebXml>
               
</configuration>
           
</plugin>
           
<plugin>
               
<groupId>org.apache.maven.plugins</groupId>
               
<artifactId>maven-compiler-plugin</artifactId>
               
<version>2.5.1</version>
               
<configuration>
                   
<source>1.8</source>
                   
<target>1.8</target>
               
</configuration>
           
</plugin>


 
</plugins>

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment