Skip to content
Snippets Groups Projects
pom.xml 3.01 KiB
Newer Older
<?xml version="1.0"?>
Ludovic Cottret's avatar
Ludovic Cottret committed
<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>
    <parent>
        <groupId>fr.inrae.toulouse.metexplore</groupId>
        <artifactId>met4j</artifactId>
lcottret's avatar
lcottret committed
        <version>1.5.4-SNAPSHOT</version>
    </parent>
    <artifactId>met4j-io</artifactId>
    <packaging>jar</packaging>
    <name>met4j-io</name>
    <url>http://maven.apache.org</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
cfrainay's avatar
cfrainay committed
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>fr.inrae.toulouse.metexplore</groupId>
            <artifactId>met4j-core</artifactId>
lcottret's avatar
lcottret committed
            <version>1.5.4-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.sbml.jsbml</groupId>
            <artifactId>jsbml</artifactId>
            <version>1.6.1</version>
        </dependency>
        <dependency>
            <groupId>xerces</groupId>
            <artifactId>xercesImpl</artifactId>
cfrainay's avatar
cfrainay committed
            <version>2.12.2</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/xom/xom -->
        <dependency>
            <groupId>xom</groupId>
            <artifactId>xom</artifactId>
cfrainay's avatar
cfrainay committed
            <version>1.3.9</version>
        </dependency>
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-client</artifactId>
            <version>1.19.4</version>
        </dependency>
lcottret's avatar
lcottret committed
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
cfrainay's avatar
cfrainay committed
            <version>32.1.3-jre</version>
lcottret's avatar
lcottret committed
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
cfrainay's avatar
cfrainay committed
            <version>5.7.0</version>
lcottret's avatar
lcottret committed
        </dependency>
    </dependencies>
Ludovic Cottret's avatar
Ludovic Cottret committed
    <build>
        <plugins>
            <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
cfrainay's avatar
cfrainay committed
                <version>0.8.11</version>
Ludovic Cottret's avatar
Ludovic Cottret committed
                <executions>
                    <!-- to avoid bugs in some situations -->
                    <execution>
                        <id>default-prepare-agent</id>
                        <goals>
                            <goal>prepare-agent</goal>
                        </goals>
                    </execution>

                    <!-- create report during maven verify phase -->
                    <execution>
                        <id>report</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>report</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>