ola. Hasta ahroa mis ws los construia con maven con una configuracion en el pom que era la siguiente: <plugin> <groupId>org.codehaus.mojo</groupId> jaxws-maven-plugin <version>1.12</version> <executions> <execution> wsgen <goals> <goal>wsgen</goal> </goals> <configuration> <sei> com.my.package.MyImplementationClass </sei> <genWsdl>true</genWsdl> <keep>true</keep> <verbose>true</verbose> </configuration> </execution> </executions> </plugin>
Esto con jdk7 no me va y me sale el siguiente error/advertencia: warning: The apt tool and its associated API are planned to be removed in the next major JDK release. These features have been superseded by javac and the standardized annotation processing API, javax.annotation.processing and javax.lang.model. Users are recommended to migrate to the annotation processing features of javac; see the javac man page for more information.
ola.
Hasta ahroa mis ws los construia con maven con una configuracion en el pom que era la siguiente:
<plugin>
<groupId>org.codehaus.mojo</groupId>
jaxws-maven-plugin
<version>1.12</version>
<executions>
<execution>
wsgen
<goals>
<goal>wsgen</goal>
</goals>
<configuration>
<sei>
com.my.package.MyImplementationClass
</sei>
<genWsdl>true</genWsdl>
<keep>true</keep>
<verbose>true</verbose>
</configuration>
</execution>
</executions>
</plugin>
Esto con jdk7 no me va y me sale el siguiente error/advertencia:
warning: The apt tool and its associated API are planned to be
removed in the next major JDK release. These features have been
superseded by javac and the standardized annotation processing API,
javax.annotation.processing and javax.lang.model. Users are
recommended to migrate to the annotation processing features of
javac; see the javac man page for more information.
Alguien sabe como se peude arreglar esto?
Gracias