Skip to content

Tag Archives: maven

How to combine GWT and Jasper Reports using Maven

11-Mar-11

Make your pom.xml dependency entry for Jasper Reports look like this If you don’t use the excludes directive you get the java.lang.NoSuchFieldError: reportUnusedDeclaredThrownExceptionIncludeDocCommentReference error. <dependency>     <groupId>net.sf.jasperreports</groupId>     <artifactId>jasperreports</artifactId>     <version>3.7.4</version>     <exclusions>        <exclusion>             <artifactId>jdtcore</artifactId>             <groupId>eclipse</groupId>           </exclusion>     </exclusions> </dependency>

JSAP Command Line Application Maven Archetype

28-Feb-11

I have created my first Maven 2 / 3 Archetype for generating command line applications that are powered by Java Simple Argument Parser ( JSAP ). Its source code lives on GitHub. I am working on getting it posted to Sonatype and synced to Central Repository.

Working Maven 3 Google App Engine Plugin with GWT support.

06-Feb-11

I spent a great deal of time getting this to work. I could not find a single source of information on what all the needed dependencies and repositories were, so there was a lot of trial and error involved. This first version is configured for GAE 1.4.0 and GWT 2.1.1, the latest versions at the [...]

Migrating Java Projects to Maven 2

13-Jul-10

Looks like Maven 2 is pretty much inline with the generic Ant based build system I have been using for the past 8 years. So I am going to take the plunge and start using Maven 2 so I don’t have to keep maintaining my system. Less time maintaining a build system means more time [...]