Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<packaging>jar</packaging>

<name>maven-stanalone-application</name>
<url>http://mylandmarktech.com</url>
<url>http://e&ecloudtech.com</url>

<organization>
<name>Landmark Technologies</name>
<url>http://mylandmarktech.com/</url>
<name>E&E Cloudtechs</name>
<url>http://e&ecloudtech.com/</url>
</organization>

<description>Maven Standalone Application</description>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/mt/sample/HelloWorld.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
public class HelloWorld {

public static void main(String[] args) {
System.out.println("Hello Engineers, Welcome to Landmark Technologies DevOps Master Class. You are sudying Maven Build Tool. !! Today Date is: " + getLocalCurrentDate());
System.out.println("Hello Engineers, Welcome to E&E CLOUDTECH SOLUTIONS DevOps Master Class. You are sudying Maven Build Tool. !! Today Date is: " + getLocalCurrentDate());

}

private static Date getLocalCurrentDate() {
String m = "Landmark Technologies";
String m = "E&E CLOUDTECH SOLUTIONS";
return new Date();

}
Expand Down