flowee-bpms-engine-feel-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.finture.bpm.dmn</groupId> <artifactId>flowee-bpms-engine-feel-api</artifactId> <version>0.7.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.finture.bpm.dmn</groupId> <artifactId>flowee-bpms-engine-dmn-root</artifactId> <version>0.7.1</version> </parent> <artifactId>flowee-bpms-engine-feel-api</artifactId> <name>Flowee BPMS DMN - engine FEEL - API</name> <properties> <flowee-bpms.artifact>com.finture.bpm.dmn.feel.impl</flowee-bpms.artifact> </properties> <dependencies> <dependency> <groupId>com.finture.commons</groupId> <artifactId>flowee-bpms-commons-typed-values</artifactId> </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> </plugins> </build> <profiles> <!-- check for api differences between latest minor release --> <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>${flowee-bpms.version.old}</comparisonVersion> <logResults>true</logResults> <excludes> <exclude>com/finture/bpm/dmn/feel/impl/**</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>