bdi-gams
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.agentsoz</groupId>
<artifactId>bdi-gams</artifactId>
<version>2.0.1</version>
</dependency><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">
<parent>
<groupId>io.github.agentsoz</groupId>
<artifactId>bdi-abm-integration</artifactId>
<version>2.0.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>bdi-gams</artifactId>
<version>2.0.1</version>
<packaging>jar</packaging>
<name>BDI GAMS Integration</name>
<description>Allows the use of GAMS (www.gams.com) as the underlying ABM </description>
<!--
First GAMS must be installed in the local Maven repository as follows:
mvn install:install-file \
-Dfile=GAMSROOT/apifiles/Java/api/GAMSJavaAPI.jar \
-DgroupId=com.gams \
-DartifactId=gams \
-Dversion=24.4 \
-Dpackaging=jar
-->
<dependencies>
<dependency>
<groupId>com.gams</groupId>
<artifactId>gams</artifactId>
<version>24.4</version>
</dependency>
<dependency>
<groupId>io.github.agentsoz</groupId>
<artifactId>bdi-abm</artifactId>
<version>2.0.1</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
license-maven-plugin
</artifactId>
<versionRange>
[1.8,)
</versionRange>
<goals>
<goal>
update-project-license
</goal>
<goal>
update-file-header
</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>