2024-02-12 18:03:02 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-11-08 12:04:33 +01:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2017-05-11 15:03:37 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>at.vvo.omds</groupId>
|
|
|
|
|
<artifactId>OMDSServiceDefinition</artifactId>
|
2023-12-13 09:28:54 +01:00
|
|
|
<version>1.11.0-SNAPSHOT</version>
|
2023-07-13 09:54:38 +02:00
|
|
|
<name>OMDS Service Definition</name>
|
2023-12-13 09:28:54 +01:00
|
|
|
<description>Version 1.11.0. Dieses Projekt enthält die Definitionen für die OMDS-Services.</description>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2017-05-11 15:03:37 +02:00
|
|
|
<properties>
|
2023-12-13 09:28:54 +01:00
|
|
|
<currentReleaseDir>r1_11_0</currentReleaseDir>
|
2017-05-11 15:03:37 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
|
2023-04-21 18:47:49 +02:00
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
2019-06-12 19:33:49 +02:00
|
|
|
|
2024-01-16 17:50:22 +01:00
|
|
|
<maven.compiler.release>17</maven.compiler.release>
|
2024-02-12 18:03:02 +01:00
|
|
|
<cxf.version>4.0.3</cxf.version>
|
2017-05-11 15:03:37 +02:00
|
|
|
</properties>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2017-05-11 15:03:37 +02:00
|
|
|
<build>
|
2018-11-08 12:04:33 +01:00
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
2022-01-05 00:05:20 +01:00
|
|
|
<plugin>
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- dieses Plugin wird fuer die Codegenerierung verwendet -->
|
2022-01-05 00:05:20 +01:00
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-codegen-plugin</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
</plugin>
|
2018-11-08 12:04:33 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2024-01-16 17:50:22 +01:00
|
|
|
<version>3.3.0</version>
|
2018-11-08 12:04:33 +01:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2024-01-16 17:50:22 +01:00
|
|
|
<version>3.12.1</version>
|
2018-11-08 12:04:33 +01:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
2023-02-02 13:59:11 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2024-01-16 17:50:22 +01:00
|
|
|
<version>3.6.0</version>
|
2023-02-02 13:59:11 +01:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
2018-11-08 12:04:33 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2024-01-16 17:50:22 +01:00
|
|
|
<version>3.6.3</version>
|
2023-02-02 13:59:11 +01:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
2018-11-08 12:04:33 +01:00
|
|
|
</pluginManagement>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2024-01-16 17:50:22 +01:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2017-05-11 15:03:37 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2024-01-16 17:50:22 +01:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<descriptors>
|
|
|
|
|
<descriptor>assembly.xml</descriptor>
|
|
|
|
|
</descriptors>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>make-assembly</id> <!-- this is used for inheritance merges -->
|
|
|
|
|
<phase>install</phase> <!-- bind to the install phase, damit source-jar und javadoc-jar mit eingepackt werden -->
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>single</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2017-05-11 15:03:37 +02:00
|
|
|
</plugin>
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- <plugin>-->
|
|
|
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
|
|
|
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
|
|
|
|
|
<!-- <configuration>-->
|
|
|
|
|
<!-- <verbose>true</verbose>-->
|
|
|
|
|
<!-- </configuration>-->
|
|
|
|
|
<!-- </plugin>-->
|
|
|
|
|
|
2017-05-11 15:03:37 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<version>2.3.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
|
|
|
|
<manifest>
|
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
|
</manifest>
|
|
|
|
|
<manifestEntries>
|
2019-06-12 19:33:49 +02:00
|
|
|
<!-- <Revision>${SVN_REVISION}</Revision>-->
|
|
|
|
|
<!-- <BuildTag>${BUILD_TAG}</BuildTag>-->
|
|
|
|
|
<BuildTimestamp>${maven.build.timestamp}</BuildTimestamp>
|
2024-01-16 17:50:22 +01:00
|
|
|
<JDKVersion>${maven.compiler.release}</JDKVersion>
|
2017-05-11 15:03:37 +02:00
|
|
|
</manifestEntries>
|
|
|
|
|
</archive>
|
|
|
|
|
</configuration>
|
2024-02-12 18:03:02 +01:00
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
2017-05-11 15:03:37 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2018-11-08 12:04:33 +01:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.19.1</version>
|
2017-05-11 15:03:37 +02:00
|
|
|
</plugin>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2018-12-11 12:09:07 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2018-11-08 12:04:33 +01:00
|
|
|
</plugin>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2024-02-12 18:03:02 +01:00
|
|
|
<configuration>
|
|
|
|
|
<doclint>reference</doclint>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2018-12-11 12:09:07 +01:00
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<goals>
|
2024-02-12 18:03:02 +01:00
|
|
|
<goal>jar</goal>
|
2018-12-11 12:09:07 +01:00
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2024-02-12 18:03:02 +01:00
|
|
|
</plugin>
|
|
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
</plugins>
|
2022-01-05 00:05:20 +01:00
|
|
|
</build>
|
2024-01-16 17:50:22 +01:00
|
|
|
|
2022-01-05 00:05:20 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- CFX Start -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-simple</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-bindings-soap</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
</dependency>
|
2024-01-16 17:50:22 +01:00
|
|
|
|
2022-01-05 00:05:20 +01:00
|
|
|
<dependency>
|
2024-01-16 17:50:22 +01:00
|
|
|
<!-- Jetty is needed if you're not using the CXFServlet -->
|
2022-01-05 00:05:20 +01:00
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-transports-http-jetty</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>org.apache.cxf</groupId>-->
|
|
|
|
|
<!-- <artifactId>cxf-rt-ws-security</artifactId>-->
|
|
|
|
|
<!-- <version>${cxf.version}</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
2022-01-05 00:05:20 +01:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-features-logging</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- CFX Ende -->
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
2024-01-16 17:50:22 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<dependencies>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<!-- CFX Start -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-simple</artifactId>
|
2024-02-19 17:29:47 +01:00
|
|
|
<scope>provided</scope>
|
2018-11-08 12:04:33 +01:00
|
|
|
</dependency>
|
2022-01-05 00:05:20 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
2024-02-19 17:29:47 +01:00
|
|
|
<scope>provided</scope>
|
2018-11-08 12:04:33 +01:00
|
|
|
</dependency>
|
2022-01-05 00:05:20 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-bindings-soap</artifactId>
|
2024-02-19 17:29:47 +01:00
|
|
|
<scope>provided</scope>
|
2018-11-08 12:04:33 +01:00
|
|
|
</dependency>
|
2022-01-05 00:05:20 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
2024-02-19 17:29:47 +01:00
|
|
|
<scope>provided</scope>
|
2018-11-08 12:04:33 +01:00
|
|
|
</dependency>
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- Jetty is needed if you're not using the CXFServlet -->
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>org.apache.cxf</groupId>-->
|
|
|
|
|
<!-- <artifactId>cxf-rt-transports-http-jetty</artifactId>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>org.apache.cxf</groupId>-->
|
|
|
|
|
<!-- <artifactId>cxf-rt-ws-security</artifactId>-->
|
|
|
|
|
<!-- </dependency>-->
|
2024-01-16 17:50:22 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<dependency>
|
2024-01-16 17:50:22 +01:00
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-features-logging</artifactId>
|
2024-02-19 17:29:47 +01:00
|
|
|
<scope>provided</scope>
|
2018-11-08 12:04:33 +01:00
|
|
|
</dependency>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<!-- CFX Ende -->
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>org.slf4j</groupId>-->
|
|
|
|
|
<!-- <artifactId>slf4j-log4j12</artifactId>-->
|
|
|
|
|
<!-- <version>1.6.6</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
2022-01-29 08:22:49 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
</dependencies>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<!-- Zielordner fuer Deploy unter OMDS-Entwicklung -->
|
2017-05-11 15:03:37 +02:00
|
|
|
<distributionManagement>
|
2018-11-08 12:04:33 +01:00
|
|
|
<repository>
|
|
|
|
|
<id>omdsaccess</id><!-- Username-Passwort in servers im settings.xml unter dieser id -->
|
|
|
|
|
<name>OMDS Release Repository</name>
|
2022-07-08 18:33:19 +02:00
|
|
|
<url>https://entw.kapdion.com/nexus/repository/omdsReleases/</url>
|
2018-11-08 12:04:33 +01:00
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>omdsaccess</id><!-- Username-Passwort in servers im settings.xml unter dieser id -->
|
|
|
|
|
<name>OMDS Snapshot Repository</name>
|
2022-07-08 18:33:19 +02:00
|
|
|
<url>https://entw.kapdion.com/nexus/repository/omdsSnapshots/</url>
|
2018-11-08 12:04:33 +01:00
|
|
|
</snapshotRepository>
|
2017-05-11 15:03:37 +02:00
|
|
|
</distributionManagement>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
|
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<profiles>
|
2019-09-02 09:56:48 +02:00
|
|
|
<!-- Spezielles Profil um Java-Code fuer die VU-Schnittstelle aus dem WSDL zu generieren -->
|
2018-11-08 12:04:33 +01:00
|
|
|
<profile>
|
2024-02-12 18:03:02 +01:00
|
|
|
<id>genJavaFromWsdl</id>
|
2018-11-08 12:04:33 +01:00
|
|
|
<activation>
|
2019-06-12 19:33:49 +02:00
|
|
|
<activeByDefault>true</activeByDefault>
|
2018-11-08 12:04:33 +01:00
|
|
|
</activation>
|
|
|
|
|
<properties>
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- <bindings.location>${basedir}/src/main/resources/wsdl</bindings.location>-->
|
|
|
|
|
<wsdl.dir>${basedir}/src/main/resources/def/${currentReleaseDir}</wsdl.dir>
|
2018-11-08 12:04:33 +01:00
|
|
|
</properties>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2022-08-20 08:22:03 +02:00
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-codegen-plugin</artifactId>
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- Version wird oben festgelegt -->
|
|
|
|
|
|
|
|
|
|
<!-- Maven Plugin https://cxf.apache.org/docs/maven-cxf-codegen-plugin-wsdl-to-java.html -->
|
|
|
|
|
<!-- Optionen des Tools wsdl2java: https://cxf.apache.org/docs/wsdl-to-java.html -->
|
2022-08-20 08:22:03 +02:00
|
|
|
<configuration>
|
|
|
|
|
<additionalJvmArgs>-Djavax.xml.accessExternalSchema=all</additionalJvmArgs>
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- <encoding>UTF-8</encoding>-->
|
2022-08-20 08:22:03 +02:00
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>generate-sources</id>
|
2024-02-12 18:03:02 +01:00
|
|
|
<phase>generate-sources</phase><!-- das ist ziemlich bald nach Clean und vor Compile -->
|
2022-08-20 08:22:03 +02:00
|
|
|
<configuration>
|
2024-02-12 18:03:02 +01:00
|
|
|
<sourceRoot>${basedir}/src/main/java</sourceRoot> <!-- baue Klassen in den normalen Pfad -->
|
|
|
|
|
<!-- defaultOptions gelten für alle WSDLs -->
|
|
|
|
|
<!-- <defaultOptions>-->
|
|
|
|
|
<!-- </defaultOptions>-->
|
|
|
|
|
<!-- wsdlOptions gelten für das angegebene WSDL -->
|
2019-06-12 19:33:49 +02:00
|
|
|
<wsdlOptions>
|
2024-02-12 18:03:02 +01:00
|
|
|
<wsdlOption>
|
|
|
|
|
<wsdl>${wsdl.dir}/omds3Services.wsdl</wsdl>
|
2019-06-12 19:33:49 +02:00
|
|
|
<!-- wsdl/jaxb Binding wie der Code generiert werden soll -->
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- you can set the options of wsdl2java command by using the <extraargs> -->
|
2024-02-19 17:29:47 +01:00
|
|
|
<extraargs>
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- <extraarg>-v</extraarg><!– zeige Versionsnummer dieses Tools –>-->
|
2024-02-19 17:29:47 +01:00
|
|
|
<extraarg>-impl</extraarg><!-- Generates starting point code for an implementation object. -->
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- <extraarg>-validate</extraarg><!– Enables validating the WSDL before generating the code. –>-->
|
|
|
|
|
<!-- <extraarg>-client</extraarg><!– Generates starting point code for a client mainline. –>-->
|
2024-02-19 17:29:47 +01:00
|
|
|
<extraarg>-verbose</extraarg><!-- Displays comments during the code generation process. -->
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- <extraarg>-mark-generated</extraarg><!– Markiere Klassen als generiert –>-->
|
|
|
|
|
<!-- <extraarg>-suppress-generated-date</extraarg><!– aber keine Datümer einbinden –>-->
|
2024-02-19 17:29:47 +01:00
|
|
|
</extraargs>
|
2019-06-12 19:33:49 +02:00
|
|
|
<bindingFiles>
|
2024-02-12 18:03:02 +01:00
|
|
|
<!-- wsdl -->
|
|
|
|
|
<bindingFile>${wsdl.dir}/wsdl_binding.xml</bindingFile>
|
|
|
|
|
<!-- xsds -->
|
|
|
|
|
<bindingFile>${wsdl.dir}/omds_binding.xml</bindingFile>
|
2019-06-12 19:33:49 +02:00
|
|
|
</bindingFiles>
|
2024-02-12 18:03:02 +01:00
|
|
|
</wsdlOption>
|
2019-06-12 19:33:49 +02:00
|
|
|
</wsdlOptions>
|
|
|
|
|
</configuration>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>wsdl2java</goal>
|
|
|
|
|
</goals>
|
2019-06-12 19:33:49 +02:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2018-11-08 12:04:33 +01:00
|
|
|
</profile>
|
2019-06-12 19:33:49 +02:00
|
|
|
|
2024-01-16 17:50:22 +01:00
|
|
|
</profiles>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2017-05-11 15:03:37 +02:00
|
|
|
</project>
|