After some investigation, I've stopped on Netbeans' platform.
Main reasons why are:
- Cross-platform.
- Uses java.
- Simpler than Eclipse.
Let's begin. Everything that is required is maven. There is an archetype to generate Netbeans Platform application. So, just execute in the terminal next command:
mvn archetype:generate
-DarchetypeGroupId=org.apache.netbeans.archetypes
-DarchetypeArtifactId=netbeans-platform-app-archetype
-DarchetypeVersion=1.22
-DgroupId=com.mycompany.project
-DartifactId=Demo
The next step is to build the project. Go to the directory Demo and execute
mvn install
That is all. In the directory
Demo/application/target/demo/
you will find execution files. Just execute it to see your first window.
No comments:
Post a Comment