blob: 8085f2e2a2e7e6d5d10aff394410e72f051632f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>mocca</artifactId>
<groupId>at.gv.egiz</groupId>
<version>1.3.32-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>STAL</artifactId>
<name>STAL</name>
<dependencies>
</dependencies>
<description>Security Token Access Layer</description>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<configuration>
<debug>false</debug>
</configuration>
</plugin>
</plugins>
</build>
<!--build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxws-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>wsimport</goal>
</goals>
<configuration>
<verbose>true</verbose>
<bindingDirectory>${basedir}/src/main/custom-binding</bindingDirectory>
<bindingFiles>
<bindingFile>stalservice-custom.xml</bindingFile>
<bindingFile>staltypes-custom.xml</bindingFile>
</bindingFiles>
<wsdlDirectory>${basedir}/src/main/wsdl</wsdlDirectory>
<wsdlFiles>
<wsdlFile>stal.wsdl</wsdlFile>
</wsdlFiles>
<sourceDestDir>${project.build.directory}/generated-sources/wsimport</sourceDestDir>
<staleFile>${project.build.directory}/generated-sources/wsimport/.staleFlag</staleFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build-->
</project>
|