Giter Site home page Giter Site logo

vishalbelsare / sarl Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sarl/sarl

0.0 0.0 0.0 58.99 MB

SARL Agent-Oriented Programming Language http://www.sarl.io

License: Apache License 2.0

Shell 0.04% HTML 0.01% CSS 0.01% Java 93.69% TeX 0.05% JavaScript 0.01% Python 0.13% Vim Script 0.02% GAP 5.94% Perl 0.11% Xtend 0.01%

sarl's Introduction

SARL Agent Programming Language

SARL logo

SARL is a general-purpose agent-oriented language, www.sarl.io.

SARL aims at providing the fundamental abstractions for dealing with concurrency, distribution, interaction, decentralization, reactivity, autonomy and dynamic reconfiguration. These high-level features are now considered as the major requirements for an easy and practical implementation of modern complex software applications. We are convinced that the agent-oriented paradigm holds the keys to effectively meet this challenge.

Considering the variety of existing approaches and meta-models in the field of agent-oriented engineering and more generally multi-agent systems, our approach remains as generic as possible and highly extensible to easily integrate new concepts and features. The language is platform- and architecture-independent.

However, we provide a first set of tools to support its execution based on the new version 2.0 of the Janus (see www.janusproject.io) platform, but it can be linked with other existing agent platforms and frameworks.

compilation process

Documentation API ff69b4 Documentation Reference red Lobby

Requires Java%208 yellowgreen Interoperable%20with Java yellowgreen io.sarl.maven.sdk Build%20with Maven blue

Based%20on Xtext orange

sarl sarl?style=flat square

Build Status

Linux [1]

statusIcon

Windows [2]

statusIcon

OSX [3]

sarl

1. Requirements

  • Java Development Toolkit (JDK) between 1.8 and 11.

  • You may encountering issues if your are using Java 12 or higher with SARL.

2. Using SARL

2.1. Recommendations

For making your experience with SARL the best, we recommend you:

  • to enable the assertions at development time (with the -ea command line option).

2.2. Use the stable version with Maven

The lastest stable version of SARL is available on Maven Central. Consequently, you could directly include the SARL module into the Maven dependencies of your project:

	...
	<dependency>
	  <groupId>io.sarl.maven</groupId>
	  <artifactId>io.sarl.maven.sdk</artifactId>
	  <version>0.11.0</version>
	</dependency>
	...

Please, replace Version 0.11.0 in the previous snipset by the number of the version you want to use.

2.3. Use of the development version with Maven

New features, enhancements and bug fixes are available in the SNAPSHOT (development) version of SARL. For using this version, you must add the Maven Repository Server of SARL in your pom file:

	...
	<dependencies>
	  <dependency>
	    <groupId>io.sarl.maven</groupId>
	    <artifactId>io.sarl.maven.sdk</artifactId>
	    <version>0.12.0-SNAPSHOT</version>
	  </dependency>
	<dependencies>
	...
	<repositories>
	  <repository>
	    <id>io.sarl-maven</id>
	    <name>SARL Snapshots</name>
	    <url>http://maven.sarl.io/</url>
	  </repository>
	</repositories>
	<pluginRepositories>
    	  <pluginRepository>
	    <id>io.sarl-maven</id>
	    <name>SARL Snapshots</name>
	    <url>http://maven.sarl.io/</url>
	    <snapshots>
	      <enabled>true</enabled>
	    </snapshots>
	  </pluginRepository>
	</pluginRepositories>
	...

2.4. Compile SARL code with Maven

For compiling SARL source files with Maven, you should use the provided plugin: sarl-maven-plugin. It invokes the SARL and Java compilers with a simpler interface than the standard Xtext maven plugin. For using the sarl-maven-plugin, you should add in your pom file:

	...
	<build>
	  <plugins>
	    <plugin>
	      <groupId>io.sarl.maven</groupId>
	      <artifactId>sarl-maven-plugin</artifactId>
	      <version>0.11.0</version>
	      <extensions>true</extensions>
	      <configuration>
	        <source>1.8</source>
	        <target>1.8</target>
	        <encoding>UTF-8</encoding>
	      </configuration>
	    </plugin>
	    ...
	  </plugins>
	  ...
	</build>
	...

Please, replace Version 0.11.0 in the previous snipset by the number of the version you want to use.

Caution
Do not forget to set the extensions flag to true.

2.5. Syntax highlighting with other tools

Several style specifications are provided for syntax highlighting in third party tools. Style specifications are provided for:

3. P2 Repository

A P2 repository is set up and accesible at the address: updates.sarl.io.

4. Issues

Issues related to SARL are tracked on GitHub You must use this issue tracker to report and follow your issues.

Additionally, you could have a look on the SARL developers' working plan on Huboard.

5. Contributions

Any contribution to the SARL is welcome. Please read the guidelines for contributors.

6. Authors and Contributors

  • klmp200 Antoine Bartuccio, fireworks and Sierpinski fractal examples.

  • gb96 Greg Bowering, fixes for localization support within the fireworks example.

  • m ezzat Mohamed Ezzat, code cleaning and optimization.

  • ThomasFarrenkopf Thomas Farrenkopf, documentation contributor.

  • jgfoster James Foster, documentation contributor.

  • gallandarakhneorg Stéphane GALLAND, founder, original and active author.

  • ngaud Nicolas GAUD, founder, original and active author.

  • jjst Jeremie JOST, documentation contributor.

  • RyuzakiKK Ludovico de NITTIS, documentation contributor.

  • tpiotrow Thomas PIOTROWSKI, maven configuration.

  • srodriguez Sebastian RODRIGUEZ, founder, original and active author.

7. License of SARL

SARL is distributed under the Apache v2 license, and is copyrigthed to the original authors and the other authors, as expressed in the NOTICE.

8. Success Stories

The following projects have sucessfully used SARL:


1. Linux 4.15.0-102, OpenJDK 1.8, Maven 3.6.2
2. Windows Server 2019, version 10.0, OpenJDK 1.8, Maven 3.6.2
3. OSX 10.12, Xcode 8.3, OracleJDK 1.8.0_112, Maven 3.6.3

sarl's People

Contributors

alexandrelombard avatar gallandarakhneorg avatar gb96 avatar jjst avatar klmp200 avatar lomadriel avatar ngaud avatar pinam45 avatar ryuzakikk avatar srodriguez avatar ssardina avatar tpiotrow avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.