<?xml version="1.0" encoding="UTF-8" standalone="no"?><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>

  <artifactId>support.semanticId.eclass</artifactId>
  <packaging>jar</packaging>
  <name>SemanticId ECLASS</name>
  <description>SemanticId resolver for ECLASS</description>

  <parent>
     <groupId>de.iip-ecosphere.platform</groupId>
     <artifactId>platformDependenciesBOM</artifactId>
     <version>0.8.0</version>
     <relativePath/>
  </parent>

  <dependencies>
	  <dependency>
	    <groupId>de.iip-ecosphere.platform</groupId>
	    <artifactId>support.aas</artifactId>
	    <version>${project.version}</version>
	  </dependency>
	  <dependency>
	    <groupId>io.swagger.core.v3</groupId>
	    <artifactId>swagger-annotations</artifactId>
	    <version>2.1.7</version>
	  </dependency>
	  <dependency>
	    <groupId>javax.annotation</groupId>
	    <artifactId>javax.annotation-api</artifactId>
	    <version>1.3.2</version>
	  </dependency>
	  <dependency>
	    <groupId>com.fasterxml.jackson.core</groupId>
	    <artifactId>jackson-databind</artifactId>
        <version>2.11.4</version>
	  </dependency>
 	  <dependency>
	    <groupId>com.fasterxml.jackson.datatype</groupId>
	    <artifactId>jackson-datatype-jsr310</artifactId>
        <version>2.11.4</version>
	  </dependency>   
	  <dependency>
	    <groupId>org.glassfish.jersey.core</groupId>
	    <artifactId>jersey-client</artifactId>
      </dependency>   
      <dependency>
        <groupId>org.glassfish.jersey.media</groupId>
        <artifactId>jersey-media-multipart</artifactId>
      </dependency>
      <dependency>
        <groupId>org.glassfish.jersey.inject</groupId>
        <artifactId>jersey-hk2</artifactId>
      </dependency>
      <dependency>
	    <groupId>org.glassfish.jersey.media</groupId>
	    <artifactId>jersey-media-json-processing</artifactId>
      </dependency>
      <dependency>
        <groupId>org.glassfish.jersey.media</groupId>
        <artifactId>jersey-media-moxy</artifactId>
      </dependency>
	  <dependency>
	    <groupId>org.glassfish.jersey.media</groupId>
	    <artifactId>jersey-media-json-jackson</artifactId>
	  </dependency>      
	  <dependency>
	    <groupId>com.brsanthu</groupId>
	    <artifactId>migbase64</artifactId>
	    <version>2.2</version>
	  </dependency>
    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.8.6</version>
    </dependency>
    <dependency>
        <groupId>com.squareup.okhttp</groupId>
        <artifactId>okhttp</artifactId>
        <version>2.7.5</version>
    </dependency>
    <dependency>
        <groupId>io.gsonfire</groupId>
        <artifactId>gson-fire</artifactId>
        <version>1.8.5</version>
    </dependency>
    <dependency>
        <groupId>com.squareup.okhttp</groupId>
        <artifactId>logging-interceptor</artifactId>
        <version>2.7.5</version>
    </dependency>
    <dependency>
        <groupId>org.apache.oltu.oauth2</groupId>
        <artifactId>org.apache.oltu.oauth2.client</artifactId>
        <version>1.0.2</version>
    </dependency>
    <dependency>
        <groupId>com.squareup.okhttp3</groupId>
        <artifactId>okhttp</artifactId>
        <version>3.14.9</version>
    </dependency>
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>test</scope>
      </dependency>
  </dependencies>

	<build>
	  <plugins>
	    <plugin>
	      <groupId>io.swagger.codegen.v3</groupId>
	      <artifactId>swagger-codegen-maven-plugin</artifactId>
	      <version>3.0.57</version>
	      <executions>
	        <execution>
	          <goals>
	            <goal>generate</goal>
	          </goals>
	          <configuration>
	            <inputSpec>${project.basedir}/src/main/eclass.json</inputSpec>
	            <language>java</language>
	            <library>okhttp-gson</library>
	            <apiPackage>de.iip_ecosphere.platform.support.semanticId.eclass.api</apiPackage>
	            <modelPackage>de.iip_ecosphere.platform.support.semanticId.eclass.model</modelPackage>
	            <invokerPackage>de.iip_ecosphere.platform.support.semanticId.eclass.handler</invokerPackage>
	            <generateApiTests>false</generateApiTests>
	            <generateApiDocumentation>false</generateApiDocumentation>
	            <generateModelTests>false</generateModelTests>
	            <generateModelDocumentation>false</generateModelDocumentation>
	            <generateSupportingFiles>true</generateSupportingFiles>
	            <configOptions>
	              <interfaceOnly>true</interfaceOnly>
	              <dateLibrary>legacy</dateLibrary>
	            </configOptions>
	          </configuration>
	        </execution>
	      </executions>
	    </plugin>
	    
      <plugin>
        <groupId>org.jacoco</groupId>
        <artifactId>jacoco-maven-plugin</artifactId>
        <version>${org.jacoco.maven.jacoco.version}</version>
	    <configuration>
	        <excludes>
	            <exclude>de/iip_ecosphere/platform/support/semanticId/eclass/api/*</exclude>
                <exclude>de/iip_ecosphere/platform/support/semanticId/eclass/handler/*</exclude>
                <exclude>de/iip_ecosphere/platform/support/semanticId/eclass/model/*</exclude>
	        </excludes>
	    </configuration>
        <executions>
            <execution>
                <goals>
                    <goal>prepare-agent</goal>
                </goals>
            </execution>
            <execution>
                <id>report</id>
                <phase>test</phase>
                <goals>
                    <goal>report</goal>
                </goals>
            </execution>
        </executions>
      </plugin>
         <plugin>
             <groupId>de.iip-ecosphere.platform</groupId>
             <artifactId>dependency-plugin</artifactId>
             <version>${project.version}</version>
             <executions>
                 <execution>
                     <id>build-classpath-plugin</id>
                     <phase>package</phase>
                     <goals>
                         <goal>build-plugin-classpath</goal>
                     </goals>
                 </execution>
                 <execution>
                     <id>copy-dependencies</id>
                     <phase>package</phase>
                     <goals>
                         <goal>copy-plugin-dependencies</goal>
                     </goals>
                 </execution>
                 <execution>
                     <id>assemble</id>
                     <phase>package</phase>
                     <goals>
                         <goal>assemble-plugin</goal>
                     </goals>
                 </execution>
             </executions>
         </plugin>
	    
	</plugins>

	    <pluginManagement>
	        <plugins>
	            <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
	            <plugin>
	                <groupId>org.eclipse.m2e</groupId>
	                <artifactId>lifecycle-mapping</artifactId>
	                <version>1.0.0</version>
	                <configuration>
	                    <lifecycleMappingMetadata>
	                        <pluginExecutions>
	                            <pluginExecution>
	                                <pluginExecutionFilter>
	                                    <groupId>
	                                        io.swagger.codegen.v3
	                                    </groupId>
	                                    <artifactId>
	                                        swagger-codegen-maven-plugin
	                                    </artifactId>
	                                    <versionRange>
	                                        [3.0.25,)
	                                    </versionRange>
	                                    <goals>
	                                        <goal>generate</goal>
	                                    </goals>
	                                </pluginExecutionFilter>
	                                <action>
	                                    <ignore/>
	                                </action>
	                            </pluginExecution>
	                        </pluginExecutions>
	                    </lifecycleMappingMetadata>
	                </configuration>
	            </plugin>
	        </plugins>
	    </pluginManagement>
	</build>

</project>