How to install gcc compiler on Mac OS X

Often times, you need c or gcc compiler to compile open source projects in Mac OS X. The problem is Mac OS X doesn’t install the gcc compiler by default. If you try to install or compile some projects that required c/gcc compiler, following errors message will be logged : configure: error: C compiler cannot …

Read more

How to install Google Plugin for Eclipse

In this tutorials, we will show you how to install “Google Plugin for Eclipse“, in Eclipse 3.7 (Indigo). 1. Installation In Eclipse 3.7, click “Help” –> “Install New Software…“, copy and paste following URL : http://dl.google.com/eclipse/plugin/3.7 Note For other Eclipse version like 3.3, 3.4, 3.5, 3.6, please refer to this GAE Eclipse documentation. Figure : …

Read more

How to install your project into Maven local repository

In Maven, you can use “mvn install” to package your project and deploy to local repository automatically, so that other developers can use it. mvn install Note When “install” phase is executed, all above phases “validate“, “compile“, “test“, “package“, “integration-test“, “verify” phase , including the current “install” phase will be executed orderly. Refer to this …

Read more