Skip to content

Monthly Archives: March 2011

Releasing Maven Artifacts to Central Repository through Sonatype

22-Mar-11

I have released my first Maven artifacts to the Central Repository through Sonatype’s Open Source Nexus Server. You have to jump through some hoops to get everything just right to be able to release to the Sonatype Nexus repository, and I could not find all the information I needed in one place so I will [...]

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>