Include pom.xml, generate eclipse jdt binds

This commit is contained in:
Max O'Cull 2019-03-27 14:18:57 -04:00
parent 4c7da804eb
commit c076533a19
10 changed files with 141 additions and 0 deletions

36
p3/.classpath Normal file
View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="bin/classes" path="src">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="bin/generated-sources/annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="bin/test-classes" path="bin/generated-test-sources/test-annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="bin/classes"/>
</classpath>

23
p3/.project Normal file
View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>p3</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.jdt.apt.aptEnabled=false

View File

@ -0,0 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.processAnnotations=disabled
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.5

View File

@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1

BIN
p3/bin/classes/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
p3/bin/classes/relop/.DS_Store vendored Normal file

Binary file not shown.

BIN
p3/bin/classes/tests/.DS_Store vendored Normal file

Binary file not shown.

69
p3/pom.xml Normal file
View File

@ -0,0 +1,69 @@
<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>