Download easy-rules-core-3.0.0.jar file

Introduction

You can download easy-rules-core-3.0.0.jar in this page.

License

MIT License

Type List

easy-rules-core-3.0.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jeasy/easy-rules-core/pom.properties
META-INF/maven/org.jeasy/easy-rules-core/pom.xml
logging.properties
org.jeasy.rules.annotation.Action.class
org.jeasy.rules.annotation.Condition.class
org.jeasy.rules.annotation.Fact.class
org.jeasy.rules.annotation.Priority.class
org.jeasy.rules.annotation.Rule.class
org.jeasy.rules.api.Facts.class
org.jeasy.rules.api.Rule.class
org.jeasy.rules.api.RuleListener.class
org.jeasy.rules.api.Rules.class
org.jeasy.rules.api.RulesEngine.class
org.jeasy.rules.core.ActionMethodOrderBean.class
org.jeasy.rules.core.BasicRule.class
org.jeasy.rules.core.CompositeRule.class
org.jeasy.rules.core.DefaultRuleListener.class
org.jeasy.rules.core.DefaultRulesEngine.class
org.jeasy.rules.core.RuleDefinitionValidator.class
org.jeasy.rules.core.RuleProxy.class
org.jeasy.rules.core.RulesEngineBuilder.class
org.jeasy.rules.core.RulesEngineParameters.class
org.jeasy.rules.core.Utils.class

Pom

easy-rules-core-3.0.0.pom file content.

<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.jeasy</groupId>
        <artifactId>easy-rules</artifactId>
        <version>3.0.0</version>
    </parent>

    <artifactId>easy-rules-core</artifactId>
    <packaging>jar</packaging>

    <name>Easy Rules core module</name>
    <description>Public API and core implementation of Easy Rules</description>

    <scm>
        <url>git@github.com:j-easy/easy-rules.git</url>
        <connection>scm:git:git@github.com:j-easy/easy-rules.git</connection>
        <developerConnection>scm:git:git@github.com:j-easy/easy-rules.git</developerConnection>
        <tag>easy-rules-3.0.0</tag>
    </scm>

    <issueManagement>
        <system>GitHub</system>
        <url>https://github.com/j-easy/easy-rules/issues</url>
    </issueManagement>

    <ciManagement>
        <system>Travis CI</system>
        <url>https://travis-ci.org/j-easy/easy-rules</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>
        <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.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>${maven-cobertura-plugin.version}</version>
                <configuration>
                    <format>xml</format>
                    <maxmem>256m</maxmem>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.mycila</groupId>
                <artifactId>license-maven-plugin</artifactId>
                <version>${maven-license-plugin.version}</version>
                <configuration>
                    <header>${project.basedir}/licence-header-template.txt</header>
                    <properties>
                        <currentYear>2017</currentYear>
                    </properties>
                    <strictCheck>true</strictCheck>
                    <includes>
                        <include>src/**/*.java</include>
                    </includes>
                </configuration>
                <executions>
                    <execution>
                        <phase>validate</phase>
                        <goals>
                            <goal>format</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>org.jeasy</groupId>
   <artifactId>easy-rules-core</artifactId>
   <version>3.0.0</version>
</dependency>

Download

If you think the following easy-rules-core-3.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download easy-rules-core-3.0.0.jar file




PreviousNext

Related