File tree 8 files changed +49
-5
lines changed
8 files changed +49
-5
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<classpath >
3
- <classpathentry kind =" con" path =" org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8" />
4
- <classpathentry kind =" src" path =" src" />
3
+ <classpathentry kind =" con" path =" org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8" >
4
+ <attributes >
5
+ <attribute name =" maven.pomderived" value =" true" />
6
+ </attributes >
7
+ </classpathentry >
8
+ <classpathentry kind =" src" output =" target/classes" path =" src" >
9
+ <attributes >
10
+ <attribute name =" optional" value =" true" />
11
+ <attribute name =" maven.pomderived" value =" true" />
12
+ </attributes >
13
+ </classpathentry >
5
14
<classpathentry kind =" src" path =" testsrc" />
6
- <classpathentry kind =" lib" path =" lib/hamcrest-core-1.3.jar" />
7
- <classpathentry kind =" lib" path =" lib/junit-4.12.jar" sourcepath =" C:/Users/DHAWAL~1/AppData/Local/Temp/.org.sf.feeling.decompiler1522058723667/source/junit-4.12-sources.jar" />
8
- <classpathentry kind =" output" path =" bin" />
15
+ <classpathentry kind =" con" path =" org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER" >
16
+ <attributes >
17
+ <attribute name =" maven.pomderived" value =" true" />
18
+ </attributes >
19
+ </classpathentry >
20
+ <classpathentry kind =" output" path =" target/classes" />
9
21
</classpath >
Original file line number Diff line number Diff line change 19
19
* .rar
20
20
21
21
bin /
22
+ target /
22
23
23
24
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
24
25
hs_err_pid *
Original file line number Diff line number Diff line change 10
10
<arguments >
11
11
</arguments >
12
12
</buildCommand >
13
+ <buildCommand >
14
+ <name >org.eclipse.m2e.core.maven2Builder</name >
15
+ <arguments >
16
+ </arguments >
17
+ </buildCommand >
13
18
</buildSpec >
14
19
<natures >
20
+ <nature >org.eclipse.m2e.core.maven2Nature</nature >
15
21
<nature >org.eclipse.jdt.core.javanature</nature >
16
22
</natures >
17
23
</projectDescription >
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ org.eclipse.jdt.core.compiler.debug.localVariable=generate
8
8
org.eclipse.jdt.core.compiler.debug.sourceFile =generate
9
9
org.eclipse.jdt.core.compiler.problem.assertIdentifier =error
10
10
org.eclipse.jdt.core.compiler.problem.enumIdentifier =error
11
+ org.eclipse.jdt.core.compiler.problem.forbiddenReference =warning
11
12
org.eclipse.jdt.core.compiler.source =1.8
Original file line number Diff line number Diff line change
1
+ activeProfiles =
2
+ eclipse.preferences.version =1
3
+ resolveWorkspaceProjects =true
4
+ version =1
Original file line number Diff line number Diff line change
1
+ <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" >
2
+ <modelVersion >4.0.0</modelVersion >
3
+ <groupId >datastructures</groupId >
4
+ <artifactId >datastructures</artifactId >
5
+ <version >0.0.1-SNAPSHOT</version >
6
+ <name >datastructures</name >
7
+ <build >
8
+ <sourceDirectory >src</sourceDirectory >
9
+ <plugins >
10
+ <plugin >
11
+ <artifactId >maven-compiler-plugin</artifactId >
12
+ <version >3.7.0</version >
13
+ <configuration >
14
+ <source >1.8</source >
15
+ <target >1.8</target >
16
+ </configuration >
17
+ </plugin >
18
+ </plugins >
19
+ </build >
20
+ </project >
You can’t perform that action at this time.
0 commit comments