com.mycompany.app.App Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-hello-world Show documentation
Show all versions of maven-hello-world Show documentation
A lightweight Maven hello world
The newest version!
package com.mycompany.app;
import java.io.IOException;
/**
* TODO: add javadoc
*/
public class App {
private App() {
}
/**
* main method
*
* @param args arguments
* @throws IOException exception
*/
public static void main(String[] args) throws IOException {
System.out.println("Hello World!");
}
}