Actions
Make Agents Yourself » Historique » Révision 1
Révision 1/104
| Suivant »
Anonyme, 03/06/2011 18:09
SpeADL MAY¶
This page is about the upcomming version of MAY based on the SpeADL language.
To install it, use the following update site:
http://www.irit.fr/PERSONNEL/SMAC/noel/may/update-snapshots/
Maven artefacts with common components are available in the following repository:
http://www.irit.fr/PERSONNEL/SMAC/noel/maven-repos/
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.
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>
Mis à jour par Anonyme il y a environ 15 ans · 104 révisions