learning
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.thesett</groupId>
<artifactId>learning</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>learning</artifactId>
<name>learning</name>
<version>0.9.117</version><!--lojix.version-->
<description>Learning code developed from 'Artificial Intelligence a Modern Approach', Prentice Hall.</description>
<url>https://www.thesett.com/build_reports/lojix/learning</url>
<packaging>jar</packaging>
<properties>
<topdir>${basedir}/..</topdir>
</properties>
<parent>
<groupId>com.thesett</groupId>
<artifactId>lojixbuild</artifactId>
<version>0.9.117</version><!--lojix.version-->
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>com.thesett</groupId>
<artifactId>common</artifactId>
<version>0.9.117</version><!--base.version-->
</dependency>
<dependency>
<groupId>com.thesett</groupId>
<artifactId>state</artifactId>
<version>0.9.117</version><!--lojix.version-->
</dependency>
<dependency>
<groupId>com.thesett</groupId>
<artifactId>power_model</artifactId>
<version>0.9.117</version><!--lojix.version-->
</dependency>
<!-- Test only dependencies. -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>test</scope>
</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>
</plugins>
</build>
</project>