scribe-trial
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.smallmind</groupId>
<artifactId>scribe-trial</artifactId>
<version>1.8.6</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>
<parent>
<groupId>org.smallmind</groupId>
<artifactId>smallmind-scribe</artifactId>
<version>1.8.6</version>
</parent>
<artifactId>scribe-trial</artifactId>
<name>Scribe-Trial</name>
<description>Logging Tests</description>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.smallmind</groupId>
<artifactId>smallmind-nutsnbolts</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.smallmind</groupId>
<artifactId>scribe-pen</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.smallmind</groupId>
<artifactId>scribe-ink-indigenous</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>true</verbose>
<source>1.7</source>
<target>1.7</target>
<complianceLevel>1.7</complianceLevel>
<showWeaveInfo>true</showWeaveInfo>
<aspectLibraries>
<aspectLibrary>
<groupId>org.smallmind</groupId>
<artifactId>scribe-pen</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
</plugin>
</plugins>
</build>
</project>