easy-rules-jexl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.dvgaba</groupId> <artifactId>easy-rules-jexl</artifactId> <version>1.2.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>io.github.dvgaba</groupId> <artifactId>easy-rules</artifactId> <version>1.2.1</version> </parent> <artifactId>easy-rules-jexl</artifactId> <packaging>jar</packaging> <name>Easy Rules JEXL module</name> <description>JEXL integration module</description> <properties> <jexl.version>3.3</jexl.version> </properties> <scm> <url>git@github.com:dvgaba/easy-rules.git</url> <connection>scm:git:git@github.com:dvgaba/easy-rules.git</connection> <developerConnection>scm:git:git@github.com:dvgaba/easy-rules.git</developerConnection> <tag>easy-rules-1.0.7</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/dvgaba/easy-rules/issues</url> </issueManagement> <ciManagement> <system>Github Actions</system> <url>https://github.com/dvgaba/easy-rules/actions</url> </ciManagement> <developers> <developer> <id>benas</id> <name>Mahmoud Ben Hassine</name> <url>http://benas.github.io</url> <email>mahmoud.benhassine@icloud.com</email> <roles> <role>Lead developer</role> </roles> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>http://opensource.org/licenses/mit-license.php</url> </license> </licenses> <dependencies> <!-- production dependencies --> <dependency> <groupId>io.github.dvgaba</groupId> <artifactId>easy-rules-support</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jexl3</artifactId> <version>${jexl.version}</version> </dependency> <!-- test dependencies --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <header>${project.parent.basedir}/licence-header-template.txt</header> </configuration> </plugin> </plugins> </build> </project>