Skip to content

Old #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open

Old #24

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
3 changes: 3 additions & 0 deletions date.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# this is used to find the date

date
1 change: 1 addition & 0 deletions file
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
used to build perodically
20 changes: 18 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<description>Maven Standalone Application</description>

<properties>
<sonar.host.url>http://35.154.242.68:9000/</sonar.host.url>
<sonar.host.url>http://3.25.221.167:9000/</sonar.host.url>
<sonar.login>admin</sonar.login>
<sonar.password>admin</sonar.password>
<sonar.password>Sunny007@</sonar.password>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand All @@ -34,6 +34,22 @@
</dependency>

</dependencies>

<distributionManagement>

<repository>
<id>nexus</id>
<name>Mithun Technologies Releases Nexus Repository</name>
<url>http://3.88.108.105:8081/repository/standalone/</url>
</repository>

<snapshotRepository>
<id>nexus</id>
<name>Mithun Technologies Snapshot Nexus Repository </name>
<url>http://3.88.108.105:8081/repository/stsnap/</url>
</snapshotRepository>

</distributionManagement>

<!-- Committing and updating changes through Maven, by using below mvn command.
For Commiting mvn -Dmessage="Updated using maven" scm:checkin For updating
Expand Down
1 change: 1 addition & 0 deletions push.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#this will used to push the code to git remote
2 changes: 1 addition & 1 deletion src/main/java/com/mt/sample/HelloWorld.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static void main(String[] args) {
}

private static Date getLocalCurrentDate() {
String m = "Mithun Technologies";
String m = "Mithun Technologies";
return new Date();

}
Expand Down