2017-05-06 19 views
0

でJAXB2-基本-注釈を付けます。私はWSDLからクラスファイルを生成するJAXWS-のmaven-プラグインを使用してMavenの構成となっているJAXWS-mavenの-プラグイン設定

私は私が生成される出力にいくつかの注釈を追加できるようにする世代で動作するようにJAXB2-基本-注釈プラグインを取得しようとしています。

特定のプラグインの設定は次のとおりです。私が持っている

[ERROR] Using " http://annox.dev.java.net " customizations requires the "-Xannotate" switch to enable this plug-in.

<pluginManagement> 
     <plugins> 
      <plugin> 
       <!-- This is the WSIMPORT plugin used to generate code from WSDL --> 
       <groupId>org.codehaus.mojo</groupId> 
       <artifactId>jaxws-maven-plugin</artifactId> 
       <version>2.4.1</version> 
       <configuration> 
        <!-- Keep generated files --> 
        <keep>true</keep> 
        <!-- generated source files destination--> 
        <sourceDestDir>target/generated-sources</sourceDestDir> 
        <!-- this is so the xsd files can be accessed --> 
        <vmArgs> 
         <vmArg>-Djavax.xml.accessExternalSchema=all</vmArg> 
        </vmArgs> 
       </configuration> 
      </plugin> 
     </plugins> 
    </pluginManagement> 

...

  <groupId>org.codehaus.mojo</groupId> 
      <artifactId>jaxws-maven-plugin</artifactId> 
      <dependencies> 
       <dependency> 
        <groupId>org.jvnet.jaxb2_commons</groupId> 
        <artifactId>jaxb2-basics-annotate</artifactId> 
        <version>1.0.2</version> 
       </dependency> 
      </dependencies> 
      <executions> 
       <execution> 
        <id>travel-itinerary</id> 
        <goals> 
         <goal>wsimport</goal> 
        </goals> 
        <configuration> 
         <extension>true</extension> 
         <!--<args>--> 
          <!--<arg>-Xannotate</arg>--> 
         <!--</args>--> 

私は引数は、私は次のエラーを取得するコメントアウトしてい

argsが使用されているため、次のエラーメッセージが表示されます。

unrecognized parameter -Xannotate

Usage: wsimport [options]

where [options] include:

jaxws-maven-pluginで動作する注釈プラグインを取得するために、私の設定の隙間を埋めることができたら大変感謝します。

答えて

0

あなたはargs

<xjcArgs> 
    <xjcArg>-Xannotate</xjcArg> 
</xjcArgs> 
xjcArgs insteadtに-Xフラグを設定することもできます
関連する問題