Skip to content

Commit

Permalink
[agentmotion] Add kinematic and steering agent motion algorithms.
Browse files Browse the repository at this point in the history
see #50

Signed-off-by: Stéphane Galland <galland@arakhne.org>
  • Loading branch information
gallandarakhneorg committed Jun 13, 2016
1 parent 20d31bc commit c41fc0f
Show file tree
Hide file tree
Showing 41 changed files with 3,100 additions and 9 deletions.
84 changes: 84 additions & 0 deletions advanced/agentmotion/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
<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>
<artifactId>advanced</artifactId>
<groupId>org.arakhne.afc.advanced</groupId>
<version>14.0-SNAPSHOT</version>
</parent>

<artifactId>agentmotion</artifactId>
<name>Agent Motion Algorithms</name>
<inceptionYear>2016</inceptionYear>

<properties>
<manifest.file>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifest.file>
</properties>

<dependencies>
<dependency>
<groupId>org.arakhne.afc.core</groupId>
<artifactId>math</artifactId>
</dependency>
<dependency>
<groupId>org.arakhne.afc.core</groupId>
<artifactId>testtools</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.arakhne.afc.core</groupId>
<artifactId>math</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<sourceDirectory>src/main/java</sourceDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>false</index>
<manifestFile>${manifest.file}</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifestFile>${manifest.file}</manifestFile>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>

<instructions>
<Export-Package>org.arakhne.afc.agentmotion.*</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

</project>
Loading

0 comments on commit c41fc0f

Please sign in to comment.