rules-interpreter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.iamrenny.ruleflow</groupId> <artifactId>rules-interpreter</artifactId> <version>0.5.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://www.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.iamrenny.ruleflow</groupId> <artifactId>ruleflow</artifactId> <version>0.5.0</version> </parent> <name>rules-interpreter</name> <artifactId>rules-interpreter</artifactId> <packaging>jar</packaging> <url>https://github.com/iamrenny/ruleflow</url> <scm> <url>https://github.com/iamrenny/ruleflow</url> <connection>scm:git:git://github.com/iamrenny/ruleflow.git</connection> <developerConnection>scm:git:ssh://github.com/iamrenny/ruleflow.git</developerConnection> </scm> <developers> <developer> <id>renny</id> <name>Renny</name> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <description>A lightweight rule engine SDK for defining workflows in a customizable DSL format.</description> <properties> <antlr.version>4.9.2</antlr.version> <logback.version>1.5.0</logback.version> <slf4j.version>1.7.25</slf4j.version> <junit.version>5.9.3</junit.version> <mockito.version>3.12.4</mockito.version> <gson.version>2.8.9</gson.version> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> </properties> <dependencies> <!-- ANTLR dependencies --> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4</artifactId> <version>${antlr.version}</version> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>${antlr.version}</version> </dependency> <!-- Logging dependencies --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <version>4.9.2</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>antlr4</goal> </goals> <configuration> <arguments> <argument>-visitor</argument> <argument>-long-messages</argument> </arguments> <sourceDirectory>${project.basedir}/src/main/antlr4</sourceDirectory> <outputDirectory>${project.build.directory}/generated-sources/antlr4</outputDirectory> </configuration> </execution> </executions> </plugin> <!-- Compiler plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <!-- Surefire plugin for running JUnit 5 tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <environmentVariables> <ENV>test</ENV> </environmentVariables> <systemPropertyVariables> <showStandardStreams>true</showStandardStreams> </systemPropertyVariables> <properties> <logLevel>info</logLevel> </properties> </configuration> </plugin> <!-- JaCoCo plugin for code coverage --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.11</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <excludes> <exclude>com/iamrenny/ruleflow/config/**</exclude> <exclude>com/iamrenny/ruleflow/vo/**</exclude> <exclude>com/iamrenny/ruleflow/errors/**</exclude> </excludes> </configuration> </execution> <execution> <id>check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>BUNDLE</element> <limits> <limit> <counter>INSTRUCTION</counter> <value>COVEREDRATIO</value> <minimum>0.1</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>compile</id> <goals> <goal>java</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </project>