Skip to content
Snippets Groups Projects
pom.xml 1.98 KiB
Newer Older
  • Learn to ignore specific revisions
  • <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">
        <modelVersion>4.0.0</modelVersion>
        <parent>
            <groupId>de.ozgcloud.eingang</groupId>
            <artifactId>eingang-manager</artifactId>
    
    OZGCloud's avatar
    OZGCloud committed
            <version>2.12.0</version>
    
        </parent>
        <artifactId>fim-adapter</artifactId>
        <name>Eingangs Adapter - FIM</name>
    
        <dependencies>
            <!--ozg-Cloud-->
            <dependency>
                <groupId>de.ozgcloud.eingang</groupId>
                <artifactId>common</artifactId>
            </dependency>
    
            <dependency>
                <groupId>de.ozgcloud.eingang</groupId>
                <artifactId>semantik-adapter</artifactId>
            </dependency>
    
    
            <!--test -->
            <dependency>
                <groupId>de.ozgcloud.eingang</groupId>
                <artifactId>common</artifactId>
                <type>test-jar</type>
                <scope>test</scope>
            </dependency>
        </dependencies>
    
        <build>
            <plugins>
                <plugin>
    
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-jar-plugin</artifactId>
                    <executions>
                        <execution>
                            <goals>
                                <goal>test-jar</goal>
                            </goals>
                        </execution>
                    </executions>
    
                    <groupId>org.jacoco</groupId>
                    <artifactId>jacoco-maven-plugin</artifactId>
    
                </plugin>
    
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
    
                    <artifactId>maven-surefire-plugin</artifactId>
    
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-failsafe-plugin</artifactId>
    
                </plugin>
            </plugins>
        </build>
    </project>