You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.1 KiB
1.1 KiB
layout | title | header | prev_section | next_section | doc |
---|---|---|---|---|---|
docs | Getting started | Getting started | about/overview | user-guide/introduction | true |
Easy Rules is a Java library. It requires a Java 1.5+ runtime.
Building from source
To build Easy Rules from sources, you need to have git and maven installed and set up.
Please follow these instructions :
{% highlight bash %} $ git clone https://github.com/benas/easy-rules.git $ cd easy-rules $ mvn package {% endhighlight %}
Easy Rules core jar easyrules-core-{{site.version}}.jar will be generated in the target folder.
Use with maven
Easy Rules is a single jar file with no dependencies. You have to add the jar easyrules-core-{{site.version}}.jar to your application's classpath.
If you use maven, you should add the following dependency to your pom.xml :
<dependencies>
<dependency>
<groupId>org.easyrules</groupId>
<artifactId>easyrules-core</artifactId>
<version>{{site.version}}</version>
</dependency>
</dependencies>