SAM33 / jbox2d

Automatically exported from code.google.com/p/jbox2d
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

pom.xml not complete for usage of compiled jar from GWT project #51

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The following plugin needs to be added to pom.xml, as the GWT compiler requires 
the classes and the sources boundled together while running outside of the IDE, 
eg. maven command-line:

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>gwt-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>resources</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

Original issue reported on code.google.com by mirkosertic42@gmail.com on 15 Nov 2013 at 3:33