Skip to content
Snippets Groups Projects
dependency-reduced-pom.xml 1.86 KiB
Newer Older
Valerio Pastore's avatar
Valerio Pastore committed
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.mycompany</groupId>
  <artifactId>ControlPanelMVN</artifactId>
  <version>1.0-SNAPSHOT</version>
  <build>
Valerio Pastore's avatar
Valerio Pastore committed
    <resources>
      <resource>
        <directory>src/main/java</directory>
      </resource>
    </resources>
Valerio Pastore's avatar
Valerio Pastore committed
    <plugins>
      <plugin>
        <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>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>3.2.4</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <transformers>
                <transformer>
                  <mainClass>com.mycompany.controlpanelmvn.MainFrame</mainClass>
                </transformer>
              </transformers>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <properties>
    <exec.mainClass>com.mycompany.controlpanelmvn.MainFrame</exec.mainClass>
    <maven.compiler.source>1.8</maven.compiler.source>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Valerio Pastore's avatar
Valerio Pastore committed
    <maven.compiler.target>1.8</maven.compiler.target>
Valerio Pastore's avatar
Valerio Pastore committed
  </properties>
</project>