Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

updated jaxws plugin version to support ws-security policies and java… #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.repository
contract/src/main/resources/com/sybase365/mobiliser/framework/
contract/src/main/resources/com/sybase365/mobiliser/money/
.project
.classpath
.settings
target
7 changes: 6 additions & 1 deletion service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,18 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxws-maven-plugin</artifactId>
<version>1.12</version>
<version>2.4.1</version>
<executions>
<execution>
<id>weather</id>
<goals>
<goal>wsimport</goal>
</goals>
<configuration>
<!-- javax.xml.accessExternalSchema argument needed for Java8 -->
<vmArgs>
<vmArg>-Djavax.xml.accessExternalSchema=all</vmArg>
</vmArgs>
<wsdlDirectory>src/main/resources</wsdlDirectory>
<wsdlFiles>
<wsdlFile>Weather.wsdl</wsdlFile>
Expand All @@ -49,6 +53,7 @@
<xnocompile>true</xnocompile>
<staleFile>${project.build.directory}/jaxws/stale/.staleFlag_WeatherService</staleFile>
<wsdlLocation>/Weather.wsdl</wsdlLocation>
<sourceDestDir>${project.build.directory}/jaxws/wsimport/java/</sourceDestDir>
</configuration>
</execution>
</executions>
Expand Down