debug_ui_tools_api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.thesett</groupId>
<artifactId>debug_ui_tools_api</artifactId>
<version>0.9.117</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.thesett</groupId>
<artifactId>debug_ui_tools_api</artifactId>
<name>debug_ui_tools_api</name>
<version>0.9.117</version><!--debugger.version-->
<description>Standalone WAM debugger tool.</description>
<url>https://www.thesett.com/build_reports/lojix/wam</url>
<packaging>jar</packaging>
<properties>
<topdir>${basedir}/..</topdir>
</properties>
<parent>
<groupId>com.thesett</groupId>
<artifactId>debuggerbuild</artifactId>
<version>0.9.117</version><!--debugger.version-->
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>com.thesett</groupId>
<artifactId>enhanced_text_model</artifactId>
<version>0.9.117</version><!--debugger.version-->
</dependency>
</dependencies>
<build>
<plugins>
<!-- Make the unit tests available to other modules. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Set up the run plugin to generate command line scripts. -->
<plugin>
<groupId>com.thesett</groupId>
<artifactId>run-maven-plugin</artifactId>
<configuration>
<scriptOutDirectory>target</scriptOutDirectory>
<systemproperties>
<property>
<name>log4j.configuration</name>
<value>${log4j.configuration}</value>
</property>
</systemproperties>
<commands>
<wamdebug>com.thesett.aima.logic.fol.wam.debugger.Main</wamdebug>
</commands>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>script</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>