Skip to content
Open
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
131 changes: 66 additions & 65 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,75 +1,76 @@
<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">
<modelVersion>4.0.0</modelVersion>
<
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">
<modelVersion>4.0.0</modelVersion>

<groupId>com.mt</groupId>
<artifactId>maven-stanalone-application</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<groupId>com.dhanu</groupId>
<artifactId>maven-stanalone-application</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>maven-stanalone-application</name>
<url>http://mithuntechnologies.com</url>
<name>maven-stanalone-application</name>
<url>http://mithuntechnologies.com</url>

<organization>
<name>Mithun Technologies</name>
<url>http://mithuntechnologies.com/</url>
</organization>
<description>Maven Standalone Application</description>
<organization>
<name>Mithun Technologies</name>
<url>http://mithuntechnologies.com/</url>
</organization>
<description>Maven Standalone Application</description>

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

<dependencies>
<dependencies>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>

</dependencies>
</dependencies>

<!-- Committing and updating changes through Maven, by using below mvn command.
For Commiting mvn -Dmessage="Updated using maven" scm:checkin For updating
mvn scm:update -->
<!--
<scm>
<connection>scm:git:https://github.com/MithunTechnologiesDevOps/maven-standalone-application</connection>
<developerConnection>scm:git:https://github.com/MithunTechnologiesDevOps/maven-standalone-application</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/MithunTechnologiesDevOps/maven-standalone-application</url>
</scm>
<!-- Committing and updating changes through Maven, by using the below mvn command.
For Commiting mvn -Dmessage="Updated using maven" scm:checkin For updating
mvn scm:update -->
<!--
<scm>
<connection>scm:git:https://github.com/MithunTechnologiesDevOps/maven-standalone-application</connection>
<developerConnection>scm:git:https://github.com/MithunTechnologiesDevOps/maven-standalone-application</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/MithunTechnologiesDevOps/maven-standalone-application</url>
</scm>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/MithunTechnologiesDevOps/maven-standalone-application/issues</url>
</issueManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/MithunTechnologiesDevOps/maven-standalone-application/issues</url>
</issueManagement>

-->
<build>
<plugins>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.mt.sample.HelloWorld</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
-->
<build>
<plugins>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.mt.sample.HelloWorld</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>