Bau des Projekts auf Version 1.4 umgestellt

This commit is contained in:
2018-12-11 12:09:07 +01:00
parent e3511b5ac6
commit ce8449163b
431 changed files with 18751 additions and 23386 deletions

View File

@@ -3,12 +3,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<modelVersion>4.0.0</modelVersion>
<groupId>at.vvo.omds</groupId>
<artifactId>OMDSServiceDefinition</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.4.0-SNAPSHOT</version>
<name>OMDS Service Definition</name>
<description>Dieses Projekt enthaelt die Definitionen fuer die OMDS Services.</description>
<properties>
<currentOmds3VersionDir>v1-0-3</currentOmds3VersionDir>
<currentOmds3VersionDir>v1-4-0</currentOmds3VersionDir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -16,11 +16,11 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<timestamp>${maven.build.timestamp}</timestamp>
<target.generation.path>${basedir}/src/main/java</target.generation.path>
<bindings.location.rel>/src/main/resources/bind/v1-3-0</bindings.location.rel>
<bindings.location.rel>/src/main/resources/bind/v1-4-0</bindings.location.rel>
<bindings.location>${basedir}${bindings.location.rel}</bindings.location>
<wsdl.location>src/main/resources/def/v1-3-0/omds3Services.wsdl</wsdl.location>
<brokerwsdl.location>src/main/resources/def/v1-3-0/broker/omds3ServicesBroker.wsdl</brokerwsdl.location>
<wsdl.location>src/main/resources/def/v1-4-0/omds3Services.wsdl</wsdl.location>
<brokerwsdl.location>src/main/resources/def/v1-4-0/broker/omds3ServicesBroker.wsdl</brokerwsdl.location>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
@@ -79,7 +79,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<phase>install</phase> <!-- bind to the install phase, damit source-jar und javadoc-jar mit eingepackt werden -->
<goals>
<goal>single</goal>
</goals>
@@ -93,7 +93,6 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<verbose>true</verbose>
<fork>true</fork>
<compilerVersion>${jdk.version}</compilerVersion>
<targetJdk>${jdk.version}</targetJdk>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>UTF-8</encoding>
@@ -133,26 +132,26 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<!-- <executions> -->
<!-- <execution> -->
<!-- <id>attach sources</id> -->
<!-- <goals> -->
<!-- <goal>jar</goal> -->
<!-- </goals> -->
<!-- </execution> -->
<!-- </executions> -->
<executions>
<execution>
<id>attach sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<!-- <executions> -->
<!-- <execution> -->
<!-- <id>attach-javadocs</id> -->
<!-- <goals> -->
<!-- <goal>jar</goal> -->
<!-- </goals> -->
<!-- </execution> -->
<!-- </executions> -->
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
@@ -324,14 +323,10 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>