Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi2krishna authored Jul 27, 2021
1 parent 16355ac commit 3516bd4
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ravi.cal</groupId>
<artifactId>RaviCalculator</artifactId>
<version>0.1.1</version>
<version>0.1.2</version>
<packaging>jar</packaging>
<name>RaviCalculator</name>
<url>http://maven.apache.org</url>
Expand All @@ -18,5 +18,22 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<!-- Building an executable jar -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<!-- give full qualified name of your main class-->
<mainClass>com.ravi.cal.RaviCalculator.Calculator</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 3516bd4

Please sign in to comment.