File tree Expand file tree Collapse file tree 13 files changed +175
-0
lines changed
main/java/com/FlammulinaBlog/JavaConcurrent
test/java/com/FlammulinaBlog/JavaConcurrent
maven/com.FlammulinaBlog/JavaConcurrent
com/FlammulinaBlog/JavaConcurrent
test-classes/com/FlammulinaBlog/JavaConcurrent Expand file tree Collapse file tree 13 files changed +175
-0
lines changed Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <classpath >
3+ <classpathentry kind =" src" output =" target/classes" path =" src/main/java" >
4+ <attributes >
5+ <attribute name =" optional" value =" true" />
6+ <attribute name =" maven.pomderived" value =" true" />
7+ </attributes >
8+ </classpathentry >
9+ <classpathentry kind =" src" output =" target/test-classes" path =" src/test/java" >
10+ <attributes >
11+ <attribute name =" optional" value =" true" />
12+ <attribute name =" maven.pomderived" value =" true" />
13+ </attributes >
14+ </classpathentry >
15+ <classpathentry kind =" con" path =" org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5" >
16+ <attributes >
17+ <attribute name =" maven.pomderived" value =" true" />
18+ </attributes >
19+ </classpathentry >
20+ <classpathentry kind =" con" path =" org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER" >
21+ <attributes >
22+ <attribute name =" maven.pomderived" value =" true" />
23+ </attributes >
24+ </classpathentry >
25+ <classpathentry kind =" output" path =" target/classes" />
26+ </classpath >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <projectDescription >
3+ <name >JavaConcurrent</name >
4+ <comment ></comment >
5+ <projects >
6+ </projects >
7+ <buildSpec >
8+ <buildCommand >
9+ <name >org.eclipse.jdt.core.javabuilder</name >
10+ <arguments >
11+ </arguments >
12+ </buildCommand >
13+ <buildCommand >
14+ <name >org.eclipse.m2e.core.maven2Builder</name >
15+ <arguments >
16+ </arguments >
17+ </buildCommand >
18+ </buildSpec >
19+ <natures >
20+ <nature >org.eclipse.jdt.core.javanature</nature >
21+ <nature >org.eclipse.m2e.core.maven2Nature</nature >
22+ </natures >
23+ </projectDescription >
Original file line number Diff line number Diff line change 1+ eclipse.preferences.version =1
2+ encoding//src/main/java =UTF-8
3+ encoding//src/test/java =UTF-8
4+ encoding/<project>=UTF-8
Original file line number Diff line number Diff line change 1+ eclipse.preferences.version =1
2+ org.eclipse.jdt.core.compiler.codegen.targetPlatform =1.5
3+ org.eclipse.jdt.core.compiler.compliance =1.5
4+ org.eclipse.jdt.core.compiler.problem.forbiddenReference =warning
5+ org.eclipse.jdt.core.compiler.source =1.5
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"
2+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+
5+ <groupId >com.FlammulinaBlog</groupId >
6+ <artifactId >JavaConcurrent</artifactId >
7+ <version >0.0.1</version >
8+ <packaging >jar</packaging >
9+
10+ <name >JavaConcurrent</name >
11+ <url >http://maven.apache.org</url >
12+
13+ <properties >
14+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15+ </properties >
16+
17+ <dependencies >
18+ <dependency >
19+ <groupId >junit</groupId >
20+ <artifactId >junit</artifactId >
21+ <version >3.8.1</version >
22+ <scope >test</scope >
23+ </dependency >
24+ </dependencies >
25+ </project >
Original file line number Diff line number Diff line change 1+ package com .FlammulinaBlog .JavaConcurrent ;
2+
3+ /**
4+ * Hello world!
5+ *
6+ */
7+ public class App
8+ {
9+ public static void main ( String [] args )
10+ {
11+ System .out .println ( "Hello World!" );
12+ }
13+ }
Original file line number Diff line number Diff line change 1+ package com .FlammulinaBlog .JavaConcurrent ;
2+
3+ import junit .framework .Test ;
4+ import junit .framework .TestCase ;
5+ import junit .framework .TestSuite ;
6+
7+ /**
8+ * Unit test for simple App.
9+ */
10+ public class AppTest
11+ extends TestCase
12+ {
13+ /**
14+ * Create the test case
15+ *
16+ * @param testName name of the test case
17+ */
18+ public AppTest ( String testName )
19+ {
20+ super ( testName );
21+ }
22+
23+ /**
24+ * @return the suite of tests being tested
25+ */
26+ public static Test suite ()
27+ {
28+ return new TestSuite ( AppTest .class );
29+ }
30+
31+ /**
32+ * Rigourous Test :-)
33+ */
34+ public void testApp ()
35+ {
36+ assertTrue ( true );
37+ }
38+ }
Original file line number Diff line number Diff line change 1+ Manifest-Version : 1.0
2+ Built-By : Administrator
3+ Build-Jdk : 1.8.0_65
4+ Created-By : Maven Integration for Eclipse
5+
Original file line number Diff line number Diff line change 1+ # Generated by Maven Integration for Eclipse
2+ # Tue Dec 26 15:32:42 CST 2017
3+ version =0.0.1
4+ groupId =com.FlammulinaBlog
5+ m2e.projectName =JavaConcurrent
6+ m2e.projectLocation =G\:\\ workspace_4.7\\ JavaConcurrent
7+ artifactId =JavaConcurrent
You can’t perform that action at this time.
0 commit comments