add project file...

Signed-off-by: j502647092 <jtb1@163.com>
master
j502647092 2015-06-29 15:12:14 +08:00
parent 0b51de78ba
commit e5b52876e3
8 changed files with 90 additions and 40 deletions

20
.classpath Normal file
View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry including="**/*.java" kind="src" output="target/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/JavaSE-1.7">
<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>

73
.gitignore vendored
View File

@ -1,40 +1,35 @@
# Eclipse stuff # netbeans
/.classpath /nbproject
/.project
/.settings # we use maven!
/build.xml
# netbeans
/nbproject # maven
/target
# we use maven! /repo
/build.xml
# vim
# maven .*.sw[a-p]
/target
/repo # various other potential build files
/build
# vim /bin
.*.sw[a-p] /dist
/manifest.mf
# various other potential build files
/build /world
/bin
/dist # Mac filesystem dust
/manifest.mf *.DS_Store
/world # intellij
*.iml
# Mac filesystem dust *.ipr
*.DS_Store *.iws
.idea/
# intellij
*.iml # Project Stuff
*.ipr /src/main/resources/Soulbound
*.iws
.idea/ # Atlassian Stuff
# Project Stuff
/src/main/resources/Soulbound
# Atlassian Stuff
/atlassian-ide-plugin.xml /atlassian-ide-plugin.xml

23
.project Normal file
View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>LuckLottery</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.m2e.core.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,3 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
encoding/src=UTF-8

View File

@ -0,0 +1,5 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.7

View File

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

Binary file not shown.

View File

@ -48,7 +48,7 @@
<artifactId>VaultAPI</artifactId> <artifactId>VaultAPI</artifactId>
<version>1.5</version> <version>1.5</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${project.basedir}/lib/Vault-1.4.1.jar</systemPath> <systemPath>${project.basedir}/lib/Vault.jar</systemPath>
</dependency> </dependency>
</dependencies> </dependencies>
<properties> <properties>