[CXF-7517]add jaxws/jaxb api dependency into xjc-plugin so that we don't need specify add-moudles into MAVEN_OPTS with java9
diff --git a/pom.xml b/pom.xml
index b68efcd..371dd3c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -572,6 +572,34 @@
                  </plugins>
              </build>
         </profile>
+        <profile>
+            <id>java9</id>
+            <activation>
+                <jdk>9</jdk>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>javax.xml.bind</groupId>
+                    <artifactId>jaxb-api</artifactId>
+                    <version>2.3.0</version>
+                </dependency>
+                <dependency>
+                    <groupId>javax.annotation</groupId>
+                    <artifactId>javax.annotation-api</artifactId>
+                    <version>1.3.1</version>
+                </dependency>
+                <dependency>
+                    <groupId>javax.xml.ws</groupId>
+                    <artifactId>jaxws-api</artifactId>
+                    <version>2.3.0</version>
+                    </dependency>
+                <dependency>
+                    <groupId>javax.activation</groupId>
+                    <artifactId>activation</artifactId>
+                    <version>1.1.1</version>
+                </dependency>
+            </dependencies>
+         </profile>
     </profiles>
 
 </project>