We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7e1a2b commit 200fd34Copy full SHA for 200fd34
binary-array-ld-cli/pom.xml
@@ -41,4 +41,32 @@
41
<scope>test</scope>
42
</dependency>
43
</dependencies>
44
+ <build>
45
+ <plugins>
46
+ <plugin>
47
+ <groupId>org.apache.maven.plugins</groupId>
48
+ <artifactId>maven-assembly-plugin</artifactId>
49
+ <version>2.6</version>
50
+ <executions>
51
+ <execution>
52
+ <id>make-assembly</id>
53
+ <phase>package</phase>
54
+ <goals>
55
+ <goal>single</goal>
56
+ </goals>
57
+ <configuration>
58
+ <archive>
59
+ <manifest>
60
+ <mainClass>net.bald.BinaryArrayConvertCliKt</mainClass>
61
+ </manifest>
62
+ </archive>
63
+ <descriptorRefs>
64
+ <descriptorRef>exec</descriptorRef>
65
+ </descriptorRefs>
66
+ </configuration>
67
+ </execution>
68
+ </executions>
69
+ </plugin>
70
+ </plugins>
71
+ </build>
72
</project>
0 commit comments