cs448/p3/pom.xml

70 lines
2.4 KiB
XML

<project>
<modelVersion>4.0.0</modelVersion>
<build>
<directory>${project.basedir}/bin</directory>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<finalName>${project.artifactId}-${project.version}</finalName>
<testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
<sourceDirectory>${project.basedir}/src</sourceDirectory>
<!-- TODO: MNG-3731 maven-plugin-tools-api < 2.4.4 expect this to be relative... -->
<testSourceDirectory>${project.basedir}/src/test</testSourceDirectory>
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>${project.basedir}/src/test/resources</directory>
</testResource>
</testResources>
</build>
<dependencies>
<dependency>
<groupId>minibase</groupId>
<artifactId>bufmgr</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${project.basedir}/lib/bufmgr.jar</systemPath>
</dependency>
<dependency>
<groupId>minibase</groupId>
<artifactId>diskmgr</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${project.basedir}/lib/diskmgr.jar</systemPath>
</dependency>
<dependency>
<groupId>minibase</groupId>
<artifactId>heap</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${project.basedir}/lib/heap.jar</systemPath>
</dependency>
<dependency>
<groupId>minibase</groupId>
<artifactId>index</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${project.basedir}/lib/index.jar</systemPath>
</dependency>
<dependency>
<groupId>minibase</groupId>
<artifactId>junit</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${project.basedir}/lib/junit.jar</systemPath>
</dependency>
<dependency>
<groupId>minibase</groupId>
<artifactId>hamcrest</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${project.basedir}/lib/org.hamcrest.core_1.3.0.v201303031735.jar</systemPath>
</dependency>
</dependencies>
<groupId>com.maxocull.cs448</groupId>
<artifactId>p3</artifactId>
<version>1</version>
</project>