data-weave-caller
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.codecentric.mule.modules</groupId>
<artifactId>data-weave-caller</artifactId>
<version>1.2.0</version>
</dependency><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>de.codecentric.mule.modules</groupId>
<artifactId>data-weave-caller</artifactId>
<version>1.2.0</version>
<packaging>jar</packaging>
<name>data-weave-caller</name>
<url>http://maven.apache.org</url>
<description>Library to call DataWeave from Java and execute DW unit tests.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<data.weave.version>2.9.1</data.weave.version>
<data.weave.testing.framework.version>2.9.0</data.weave.testing.framework.version>
<junit.jupyter.version>5.13.0</junit.jupyter.version>
</properties>
<developers>
<developer>
<name>Roger Butenuth</name>
<organization>codecentric AG</organization>
<organizationUrl>https://www.codecentric.de</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:rbutenuth/data-weave-caller.git</connection>
<developerConnection>scm:git:git@github.com:rbutenuth/data-weave-caller.git</developerConnection>
<url>https://github.com/rbutenuth/data-weave-caller</url>
<tag>data-weave-caller-1.2.0</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh-snapshot</id>
<name>Nexus Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>mule-public</id>
<url>https://repository.mulesoft.org/nexus/content/repositories/public</url>
</repository>
</repositories>
<profiles>
<profile>
<id>sign-artifacts</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<configuration>
<!-- <excludePackageNames>de.codecentric.mule.*</excludePackageNames> -->
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<version>3.2.7</version>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
<localCheckout>true</localCheckout>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.21.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.9.0</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupyter.version}</version>
<!-- not scope test, as some classes are needed by runner -->
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupyter.version}</version>
<!-- not scope test, as some classes are needed by runner -->
</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>org.mule.weave</groupId>
<artifactId>data-weave-testing-framework</artifactId>
<version>${data.weave.testing.framework.version}</version>
</dependency>
</dependencies>
</project>