camunda-dmn-model
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.camunda.bpm.model</groupId>
<artifactId>camunda-dmn-model</artifactId>
<version>7.24.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>
<parent>
<groupId>org.camunda.bpm.model</groupId>
<artifactId>camunda-model-apis</artifactId>
<relativePath>../</relativePath>
<version>7.24.0</version>
</parent>
<artifactId>camunda-dmn-model</artifactId>
<packaging>jar</packaging>
<description>
Note: 7.24.0 is the last community edition release published on Maven Central. This library will not receive any new versions or releases. However, if you are interested in extended maintenance you could look into our enterprise edition. Get in touch with us: https://camunda.com/contact/
</description>
<name>Camunda Platform - DMN Model API</name>
<inceptionYear>2015</inceptionYear>
<properties>
<camunda.artifact>org.camunda.bpm.model.dmn</camunda.artifact>
<camunda.osgi.export>
!org.camunda.bpm.model.dmn.schema,
${camunda.osgi.export.pkg};${camunda.osgi.version};-noimport:=true
</camunda.osgi.export>
</properties>
<dependencies>
<dependency>
<groupId>org.camunda.bpm.model</groupId>
<artifactId>camunda-xml-model</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-bpm-archunit</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>cleanVersions</goal>
</goals>
</execution>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<dependenciesToScan>
<dependency>org.camunda.bpm:camunda-bpm-archunit</dependency>
</dependenciesToScan>
</configuration>
</plugin>
</plugins>
</build>
<!-- check for api differences between latest minor release -->
<profiles>
<profile>
<id>check-api-compatibility</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<configuration>
<comparisonVersion>${camunda.version.old}</comparisonVersion>
<logResults>true</logResults>
<excludes>
<exclude>org/camunda/bpm/model/dmn/impl/**</exclude>
<exclude>org/camunda/bpm/model/dmn/instance/Binding</exclude>
<exclude>org/camunda/bpm/model/dmn/instance/ParameterReference</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>all</id>
<phase>verify</phase>
<goals>
<goal>check-no-fork</goal>
</goals>
<configuration>
<textOutputFile>${project.build.directory}/clirr-all.txt</textOutputFile>
<failOnWarning>false</failOnWarning>
<failOnError>false</failOnError>
</configuration>
</execution>
<execution>
<id>restrictive</id>
<phase>verify</phase>
<goals>
<goal>check-no-fork</goal>
</goals>
<configuration>
<textOutputFile>${project.build.directory}/clirr-restrictive.txt</textOutputFile>
<failOnWarning>true</failOnWarning>
<ignoredDifferencesFile>.clirr-jenkins-ignore.xml</ignoredDifferencesFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>