Enunciate 2.0 Milestone 5
Pre-release
Pre-release
Enunciate 2.0 Milestone 5 is a patch release that fixes some of the reported issues with milestone 4. Please report any other issues using the Enunciate issue tracker.
Maven
<project>
...
<build>
...
<plugins>
...
<plugin>
<groupId>com.webcohesion.enunciate</groupId>
<artifactId>enunciate-maven-plugin</artifactId>
<version>2.0.0-M.5</version>
<executions>
<execution>
<id>assemble</id>
<goals>
<goal>assemble</goal>
</goals>
</execution>
</executions>
</plugin>
...
</plugins>
...
</build>
...
</project>
Ant
<path id="enunciate.classpath">
<fileset dir="${enunciate.home}/lib">
<include name="*.jar"/>
</fileset>
</path>
<taskdef name="enunciate" classname="com.webcohesion.enunciate.EnunciateTask">
<classpath refid="enunciate.classpath"/>
</taskdef>
<enunciate basedir="src/main/java" buildDir="target/enunciate">
<include name="**/*.java"/>
<classpath refid="enunciate.classpath"/>
</enunciate>