Maven + GWT I needed to create a GWT project using maven again. The original post lacked some details. This time, I got it to work with a slightly different steps. First, I ran the following command: mvn archetype:generate -DarchetypeGroupId=org.codehaus.mojo -DarchtypeArtifactId=gwt-maven-plugin -DarchetypeVersion=2.4.0 -DarchetypeRepository=repo1.maven.org Somehow, Maven didn’t pickup the group ID and artifact ID. So, I [...]
Posts Tagged ‘Eclipse’
GWT, Maven, Eclipse and WebLogic: take 2
Posted: April 9, 2012 in howto, TechnologyTags: Eclipse, GWT, java se 6, maven, WebLogic
How to create a GWT project using Maven
Posted: February 28, 2012 in Life in generalTags: Eclipse, GWT, maven, OEPE, WebLogic
This howto helped me to create a GWT project using Maven. It even allows me to run the GWT project in development mode with Jetty, very sweet! On the other hand, OEPE’s Weblogic plug-in doesn’t play nice with GWT based project. Looks like I’ll continue use Maven to build WAR files.
Adding Weblogic 12c Runtime in OEPE (Eclipse)
Posted: February 28, 2012 in howto, TechnologyTags: bug, Eclipse, OEPE, Oracle, WebLogic
When I tried to add an Oracle WebLogic Server 12c as a new server runtime to a project in OEPE (Eclipse), OEPE refused to recognize the information I entered. Fortunately, Daniel G. told me that I have to select the wlserver folder first, then backspace a few times to remove wlserver from the path and [...]
Debug JBoss with Eclipse
Posted: November 30, 2011 in Eclipse, howto, IDE, TechnologyTags: debugging, Eclipse, howto, Java, JBoss
I found a need to debug JBoss with Eclipse. A search on google led me to ths page. I had to tweak a bit to get my local instance to work. For example, I had to change the quote character from ” to “. JAVA_OPTS=”-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n $JAVA_OPTS” After that, JBOSS was able to load [...]
Create a WAR file for a GWT application
Posted: June 9, 2011 in howto, TechnologyTags: Eclipse, GWT, howto, Java, Netbeans
After I was so spoiled by GWT/Eclipse’s streamlined way of deploying a GWT application to the embedded server or Google App Engine, I was annoyed by how little support it has for other application servers. Fortunately, I was able to semi-automatically generate a WAR file for manual deployment on a remote server by following this [...]
I needed to access the GWT build-in server for Eclipse from another machine. A search on-line led me to this tutorial. It worked!
While looking for an ant build script generator, I came across ebuild and found it interesting. With this, I no longer really need to maintain a “generated” ant build script.
Subclipse on Fedora
Posted: March 24, 2011 in howto, TechnologyTags: Eclipse, Java, javahl, Subversion
Update 20110926: In Fedora 15, you can just install subversion-javahl-1.6.17-1.fc15 from Add/Remove Software tool, much easier than the method described earlier. When trying to run Subclipse, I got the following error: Failed to load JavaHL Library. To get JavaHL loaded for Subclipse on Fedora, I had to first register on Collabnet before attempt to install [...]
I encountered an access restriction error in Eclipse and found the following workaround worked for me.
This tip was helpful and resolved the same issue I had with the original post.
