라벨이 Maven인 게시물 표시

Maven Shade Plugin

<plugin>     <groupId>org.apache.maven.plugins</groupId>     <artifactId>maven-shade-plugin</artifactId>     <version>${maven.shade.plugin.version}</version>     <executions>         <execution>             <phase>package</phase>             <goals>                 <goal>shade</goal>             </goals>             <configuration>                 <finalName>${project.artifactId}</finalName>                 <minimizeJar>false</minimizeJar>                 <filters>               ...

Maven Assembly Plugin

<plugin>     <groupId>org.apache.maven.plugins</groupId>     <artifactId>maven-assembly-plugin</artifactId>     <executions>         <execution>             <id>create-jar</id>             <phase>package</phase>             <goals>                 <goal>single</goal>             </goals>             <configuration>                 <descriptorRefs>                     <descriptorRef>                         jar-with-dependencies                 ...

Scala Maven Example

<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>kr.co.devlog</groupId>     <artifactId>scala-maven-example</artifactId>     <version>0.0.1-SNAPSHOT</version>     <packaging>jar</packaging>     <properties>        <!-- Project Properties -->         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>         <!-- Plug-in properties -->         <scala.version>2.11.7</scal...