diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2015-09-24 09:58:27 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2015-09-24 09:58:27 -0400 |
| commit | ebab46a80d665a5e6c175e1dc3eaba47582ea482 (patch) | |
| tree | 8b5a56fe1a72907ceaa0614b7eb29bba93c73a5d | |
Initial project commit
| -rw-r--r-- | BJC-Utils2/.classpath | 26 | ||||
| -rw-r--r-- | BJC-Utils2/.gitignore | 1 | ||||
| -rw-r--r-- | BJC-Utils2/.project | 23 | ||||
| -rw-r--r-- | BJC-Utils2/.settings/org.eclipse.core.resources.prefs | 4 | ||||
| -rw-r--r-- | BJC-Utils2/.settings/org.eclipse.jdt.core.prefs | 5 | ||||
| -rw-r--r-- | BJC-Utils2/.settings/org.eclipse.m2e.core.prefs | 4 | ||||
| -rw-r--r-- | BJC-Utils2/pom.xml | 25 |
7 files changed, 88 insertions, 0 deletions
diff --git a/BJC-Utils2/.classpath b/BJC-Utils2/.classpath new file mode 100644 index 0000000..0a1dadd --- /dev/null +++ b/BJC-Utils2/.classpath @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="src" output="target/classes" path="src/main/java"> + <attributes> + <attribute name="optional" value="true"/> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="src" output="target/test-classes" path="src/test/java"> + <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="output" path="target/classes"/> +</classpath> diff --git a/BJC-Utils2/.gitignore b/BJC-Utils2/.gitignore new file mode 100644 index 0000000..b83d222 --- /dev/null +++ b/BJC-Utils2/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/BJC-Utils2/.project b/BJC-Utils2/.project new file mode 100644 index 0000000..e68911e --- /dev/null +++ b/BJC-Utils2/.project @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>BJC-Utils2</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> diff --git a/BJC-Utils2/.settings/org.eclipse.core.resources.prefs b/BJC-Utils2/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..f9fe345 --- /dev/null +++ b/BJC-Utils2/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,4 @@ +eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/test/java=UTF-8 +encoding/<project>=UTF-8 diff --git a/BJC-Utils2/.settings/org.eclipse.jdt.core.prefs b/BJC-Utils2/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..abec6ca --- /dev/null +++ b/BJC-Utils2/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,5 @@ +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.source=1.5 diff --git a/BJC-Utils2/.settings/org.eclipse.m2e.core.prefs b/BJC-Utils2/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000..f897a7f --- /dev/null +++ b/BJC-Utils2/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/BJC-Utils2/pom.xml b/BJC-Utils2/pom.xml new file mode 100644 index 0000000..c6b5c63 --- /dev/null +++ b/BJC-Utils2/pom.xml @@ -0,0 +1,25 @@ +<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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>bjc</groupId> + <artifactId>BJC-Utils2</artifactId> + <version>0.1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>BJC-Utils2</name> + <url>http://maven.apache.org</url> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + </dependencies> +</project> |
