script
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.janusproject.v1.extras.modules.scriptedagent</groupId>
<artifactId>script</artifactId>
<version>1.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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>scriptedagent</artifactId>
<groupId>io.janusproject.v1.extras.modules.scriptedagent</groupId>
<version>1.1</version>
</parent>
<artifactId>script</artifactId>
<name>Script API for Agents</name>
<!-- ======================================= -->
<!-- ==== Build === -->
<!-- ======================================= -->
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Include-Resource>
{maven-resources}, {maven-dependencies},
META-INF/license=target/classes/META-INF/license,
META-INF/AUTHORS.${project.artifactId}.txt=target/classes/META-INF/AUTHORS.janus.txt,
META-INF/NOTICE.${project.artifactId}.txt=target/classes/META-INF/NOTICE.janus.txt,
</Include-Resource>
<DynamicImport-Package>*</DynamicImport-Package>
</instructions>
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
<supportedProjectType>bundle</supportedProjectType>
<supportedProjectType>war</supportedProjectType>
</supportedProjectTypes>
</configuration>
</plugin>
</plugins>
</build>
<!-- ======================================= -->
<!-- ==== Dependency === -->
<!-- ======================================= -->
<dependencies>
<dependency>
<groupId>io.janusproject.v1.kernel</groupId>
<artifactId>kernel</artifactId>
</dependency>
<dependency>
<groupId>org.arakhne.afc.core</groupId>
<artifactId>vmutils</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>