frellan
01/14/2018, 1:44 PMtipsy
01/14/2018, 2:02 PMtipsy
01/14/2018, 2:03 PM<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>attached</goal>
</goals>
<phase>package</phase>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>app.MainKt</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
frellan
01/14/2018, 2:19 PMfun main()
instead and then all worked. I had stuff setup for running in IntelliJ with DevelopmentEngine
and that did not seem very flexiblefrellan
01/14/2018, 2:20 PM