Skip to content
Snippets Groups Projects
Commit 70fcc27c authored by Vito Conforti's avatar Vito Conforti
Browse files

chnanged main class in pom file

parent bd5c218f
No related branches found
No related tags found
No related merge requests found
......@@ -9,15 +9,34 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<exec.mainClass>com.mycompany.controlpanelmvn.ControlPanelMVN</exec.mainClass>
<exec.mainClass>com.mycompany.controlpanelmvn.MainFrame</exec.mainClass>
</properties>
<dependencies>
<!-- Other dependencies -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.7.0</version>
</dependency>
<!-- Other dependencies -->
</dependencies>
<!-- Other dependencies -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.7.0</version>
</dependency>
<!-- Other dependencies -->
</dependencies>
<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.mycompany.controlpanelmvn.MainFrame</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment