Skip to content
Snippets Groups Projects
pom.xml 1.99 KiB
<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>

  <groupId>no.nibio.vips.model</groupId>
  <artifactId>NaerstadModel</artifactId>
  <version>2.0.0</version>
  <packaging>jar</packaging>

  <name>NaerstadModel</name>
  
      <parent>
        <groupId>no.nibio.vips</groupId>
        <artifactId>vips-parent-pom</artifactId>
        <version>1.0.2</version>
    </parent>
    
    <repositories>
        <repository>
            <id>gitlab-maven</id>
            <url>https://gitlab.nibio.no/api/v4/projects/401/packages/maven</url>
        </repository>
    </repositories>
  
  <url>http://maven.apache.org</url>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>11</source>
                    <target>11</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>2.4.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.4.1</version>
    </dependency>
    <dependency>
      <groupId>no.nibio.vips</groupId>
      <artifactId>VIPSCommon</artifactId>
      <version>2.0.2</version>
    </dependency>
  </dependencies>
</project>