Skip to content

Commit 4517a66

Browse files
author
Bhaskar Reddy L
committed
Initial Repo
0 parents  commit 4517a66

File tree

18 files changed

+222
-0
lines changed

18 files changed

+222
-0
lines changed

.classpath

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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>

.project

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>maven-java-project</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>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding//src/test/java=UTF-8
4+
encoding/<project>=UTF-8

.settings/org.eclipse.jdt.core.prefs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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

.settings/org.eclipse.m2e.core.prefs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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.bt</groupId>
6+
<artifactId>maven-java-project</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>maven-java-project</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+
19+
<dependency>
20+
<groupId>junit</groupId>
21+
<artifactId>junit</artifactId>
22+
<version>3.8.1</version>
23+
<scope>test</scope>
24+
</dependency>
25+
26+
27+
</dependencies>
28+
29+
30+
31+
</project>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package com.bt.maven.java.project;
2+
3+
/**
4+
* Hello world!
5+
*
6+
*/
7+
8+
public class App
9+
{
10+
public static void main( String[] args )
11+
{
12+
System.out.println("Hello World!");
13+
}
14+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
package com.bt.maven.java.project;
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+
}
565 Bytes
Binary file not shown.

target/maven-archiver/pom.properties

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#Generated by Maven
2+
#Wed Jun 28 22:33:51 IST 2017
3+
version=0.0.1-SNAPSHOT
4+
groupId=com.bt
5+
artifactId=maven-java-project
2.5 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
com/bt/maven/java/project/App.class
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Users/BhaskarReddy/EclipseWorkspace/Practice/maven-java-project/src/main/java/com/bt/maven/java/project/App.java
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
com/bt/maven/java/project/AppTest.class
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Users/BhaskarReddy/EclipseWorkspace/Practice/maven-java-project/src/test/java/com/bt/maven/java/project/AppTest.java
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<testsuite tests="1" failures="0" name="com.bt.maven.java.project.AppTest" time="0.005" errors="0" skipped="0">
3+
<properties>
4+
<property name="java.runtime.name" value="Java(TM) SE Runtime Environment"/>
5+
<property name="sun.boot.library.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib"/>
6+
<property name="java.vm.version" value="25.121-b13"/>
7+
<property name="user.country.format" value="IN"/>
8+
<property name="gopherProxySet" value="false"/>
9+
<property name="java.vm.vendor" value="Oracle Corporation"/>
10+
<property name="maven.multiModuleProjectDirectory" value="/Users/BhaskarReddy/EclipseWorkspace/Practice/maven-java-project"/>
11+
<property name="java.vendor.url" value="http://java.oracle.com/"/>
12+
<property name="path.separator" value=":"/>
13+
<property name="guice.disable.misplaced.annotation.check" value="true"/>
14+
<property name="java.vm.name" value="Java HotSpot(TM) 64-Bit Server VM"/>
15+
<property name="file.encoding.pkg" value="sun.io"/>
16+
<property name="user.country" value="US"/>
17+
<property name="sun.java.launcher" value="SUN_STANDARD"/>
18+
<property name="sun.os.patch.level" value="unknown"/>
19+
<property name="java.vm.specification.name" value="Java Virtual Machine Specification"/>
20+
<property name="user.dir" value="/Users/BhaskarReddy/EclipseWorkspace/Practice/maven-java-project"/>
21+
<property name="java.runtime.version" value="1.8.0_121-b13"/>
22+
<property name="java.awt.graphicsenv" value="sun.awt.CGraphicsEnvironment"/>
23+
<property name="java.endorsed.dirs" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/endorsed"/>
24+
<property name="os.arch" value="x86_64"/>
25+
<property name="java.io.tmpdir" value="/var/folders/9n/_sy2t5s92dzfdtl548mwbz8r0000gn/T/"/>
26+
<property name="line.separator" value="
27+
"/>
28+
<property name="java.vm.specification.vendor" value="Oracle Corporation"/>
29+
<property name="os.name" value="Mac OS X"/>
30+
<property name="classworlds.conf" value="/Users/BhaskarReddy/EclipseWorkspace/Practice/.metadata/.plugins/org.eclipse.m2e.launching/launches/m2conf3453823375402672582.tmp"/>
31+
<property name="sun.jnu.encoding" value="UTF-8"/>
32+
<property name="java.library.path" value="/Users/BhaskarReddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:."/>
33+
<property name="java.specification.name" value="Java Platform API Specification"/>
34+
<property name="java.class.version" value="52.0"/>
35+
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/>
36+
<property name="os.version" value="10.12.5"/>
37+
<property name="user.home" value="/Users/BhaskarReddy"/>
38+
<property name="user.timezone" value="Asia/Kolkata"/>
39+
<property name="java.awt.printerjob" value="sun.lwawt.macosx.CPrinterJob"/>
40+
<property name="java.specification.version" value="1.8"/>
41+
<property name="file.encoding" value="UTF-8"/>
42+
<property name="user.name" value="BhaskarReddy"/>
43+
<property name="java.class.path" value="/Users/BhaskarReddy/Desktop/Eclipse.app/Contents/Eclipse/plugins/org.eclipse.m2e.maven.runtime_1.7.0.20160603-1931/jars/plexus-classworlds-2.5.2.jar"/>
44+
<property name="java.vm.specification.version" value="1.8"/>
45+
<property name="sun.arch.data.model" value="64"/>
46+
<property name="java.home" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre"/>
47+
<property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher -B install"/>
48+
<property name="java.specification.vendor" value="Oracle Corporation"/>
49+
<property name="user.language" value="en"/>
50+
<property name="awt.toolkit" value="sun.lwawt.macosx.LWCToolkit"/>
51+
<property name="java.vm.info" value="mixed mode"/>
52+
<property name="java.version" value="1.8.0_121"/>
53+
<property name="java.ext.dirs" value="/Users/BhaskarReddy/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java"/>
54+
<property name="sun.boot.class.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/classes"/>
55+
<property name="java.vendor" value="Oracle Corporation"/>
56+
<property name="maven.home" value="/Users/BhaskarReddy/EclipseWorkspace/Practice/maven-java-project/EMBEDDED"/>
57+
<property name="file.separator" value="/"/>
58+
<property name="java.vendor.url.bug" value="http://bugreport.sun.com/bugreport/"/>
59+
<property name="sun.cpu.endian" value="little"/>
60+
<property name="sun.io.unicode.encoding" value="UnicodeBig"/>
61+
<property name="sun.cpu.isalist" value=""/>
62+
</properties>
63+
<testcase classname="com.bt.maven.java.project.AppTest" name="testApp" time="0.005"/>
64+
</testsuite>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
-------------------------------------------------------------------------------
2+
Test set: com.bt.maven.java.project.AppTest
3+
-------------------------------------------------------------------------------
4+
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
Binary file not shown.

0 commit comments

Comments
 (0)