Actions
Make Agents Yourself » Historique » Révision 3
« Précédent |
Révision 3/104
(diff)
| Suivant »
Anonyme, 06/06/2011 18:41
SpeADL MAY¶
This page is about the upcoming version of MAY based on the SpeADL language.
Installation¶
To install it, use the following update site:
http://www.irit.fr/PERSONNEL/SMAC/noel/may/update-snapshots/
Setting up a project¶
After creating a Java project, don't forget to add the SpeADL Nature to the project (right-click, configure).
Then create a new file with the speadl extension.
Maven integration¶
Maven artefacts with common components are available in the following repository:
http://www.irit.fr/PERSONNEL/SMAC/noel/maven-repos/
A good starting pom.xml for a new project is the following:
<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>
<groupId>XXX</groupId>
<artifactId>XXX</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>fr.irit.smac.may.lib</groupId>
<artifactId>common-components</artifactId>
<version>0.0.1-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>fr.irit.smac</id>
<url>http://www.irit.fr/PERSONNEL/SMAC/noel/maven-repos/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src-gen</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Sources¶
The source code can be downloaded using the Mercurial DVCS:
MAY:
hg clone https://anon@wwwsecu.irit.fr/hg/SMAC/victor-noel-phd/may/may/
Libraries:
hg clone https://anon@wwwsecu.irit.fr/hg/SMAC/victor-noel-phd/may/lib/
Mis à jour par Anonyme il y a environ 15 ans · 104 révisions