aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorChristof Rabensteiner <christof.rabensteiner@iaik.tugraz.at>2019-03-19 07:37:32 +0100
committerChristof Rabensteiner <christof.rabensteiner@iaik.tugraz.at>2019-03-19 07:41:09 +0100
commiteeb17fd581546d757cfa63cfaeaa6fa735dac9dd (patch)
tree5461ba5b10fb866f08dfd8251f9b1d673ae39ef8 /pom.xml
downloadmoa-zs-eeb17fd581546d757cfa63cfaeaa6fa735dac9dd.tar.gz
moa-zs-eeb17fd581546d757cfa63cfaeaa6fa735dac9dd.tar.bz2
moa-zs-eeb17fd581546d757cfa63cfaeaa6fa735dac9dd.zip
Init Repo + Contract App2mzs
- Can generate java sources with wsdl2java (mvn generate-sources) - Add multiple versions of app2mzs because I don't know which one is right. - Fix zuseutil's wsdl (import statement) - Remove header in 1.5.3-rc1's wsdl
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml90
1 files changed, 90 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..aa08262
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,90 @@
+<?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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>egiz.gv.at</groupId>
+ <artifactId>moa-zs</artifactId>
+ <version>2.0.0</version>
+ <packaging>war</packaging>
+
+ <name>Moa ZS</name>
+ <description>Moa ZS</description>
+
+ <parent>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-parent</artifactId>
+ <version>2.1.3.RELEASE</version>
+ </parent>
+
+ <properties>
+ <java.version>11</java.version>
+ <cxf.version>3.3.0</cxf.version>
+ <springboot.version>2.1.3.RELEASE</springboot.version>
+ </properties>
+
+ <dependencies>
+ <!-- spring-boot -->
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-test</artifactId>
+ <version>${springboot.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <!-- cxf -->
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
+ <version>${cxf.version}</version>
+ </dependency>
+
+ <!-- needed by cxf-codegen-plugin's generated code -->
+ <dependency>
+ <groupId>javax.xml.ws</groupId>
+ <artifactId>jaxws-api</artifactId>
+ <version>2.3.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.jws</groupId>
+ <artifactId>javax.jws-api</artifactId>
+ <version>1.1</version>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <plugins>
+ <!-- spring-boot-maven-plugin -->
+ <plugin>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-maven-plugin</artifactId>
+ <version>${springboot.version}</version>
+ </plugin>
+ <!-- cxf-codegen-plugin -->
+ <plugin>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-codegen-plugin</artifactId>
+ <version>${cxf.version}</version>
+ <executions>
+ <execution>
+ <id>generate-sources</id>
+ <phase>generate-sources</phase>
+ <configuration>
+ <sourceRoot>${project.build.directory}/generated-sources/cxf</sourceRoot>
+ <wsdlOptions>
+ <wsdlOption>
+ <wsdl>${project.basedir}/src/main/resources/mzs1.5.3.rc1/app2mzs.wsdl</wsdl>
+ <wsdlLocation>classpath:wsdl/app2mzs.wsdl</wsdlLocation>
+ </wsdlOption>
+ </wsdlOptions>
+ </configuration>
+ <goals>
+ <goal>wsdl2java</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>