<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>com.mulesoft.connectivity</groupId>
<artifactId>interpreted-connectivity-link-weave</artifactId>
<version>1.4.1</version>
</parent>
<artifactId>connectivity-model-api</artifactId>
<properties>
<junit.jupiter.version>5.13.4</junit.jupiter.version>
<hamcrest.version>3.0</hamcrest.version>
<mockito.junit-jupiter.version>5.19.0</mockito.junit-jupiter.version>
<caffeine.version>3.2.2</caffeine.version>
<formatterConfigPath>../formatter.xml</formatterConfigPath>
<gson.version>2.13.0</gson.version>
<licensePath>../LICENSE_HEADER.txt</licensePath>
</properties>
<dependencies>
<!--  Connectivity  -->
<dependency>
<groupId>com.mulesoft.connectivity</groupId>
<artifactId>connectivity-language</artifactId>
<classifier>dw-library</classifier>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mule.weave</groupId>
<artifactId>core</artifactId>
<version>${data.weave.version}</version>
</dependency>
<dependency>
<groupId>org.mule.weave</groupId>
<artifactId>parser</artifactId>
<version>${data.weave.version}</version>
</dependency>
<dependency>
<groupId>org.mule.weave</groupId>
<artifactId>runtime</artifactId>
<version>${data.weave.version}</version>
</dependency>
<dependency>
<groupId>org.mule.weave</groupId>
<artifactId>core-modules</artifactId>
<version>${data.weave.version}</version>
</dependency>
<dependency>
<groupId>org.mule.weave</groupId>
<artifactId>java-module</artifactId>
<version>${data.weave.version}</version>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>${caffeine.version}</version>
</dependency>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
<scope>provided</scope>
</dependency>
<!--  Test  -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code</groupId>
<artifactId>impsort-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
