Skip to content

Instantly share code, notes, and snippets.

@dsdstudio
Last active January 5, 2016 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsdstudio/550f8017bd18870cb0ff to your computer and use it in GitHub Desktop.
Save dsdstudio/550f8017bd18870cb0ff to your computer and use it in GitHub Desktop.
maven execute main class
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<id>default-cli</id>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>com.dsdstudio.Main</mainClass>
</configuration>
</execution>
</executions>
</plugin>
@dsdstudio
Copy link
Author

버전 1.4.0으로 정리

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment