MAVEN


  •  Prepare Eclipse 
 project folder -->mvn eclipse:eclipse

  • Normal Clean 
 project folder -->mvn clean;
  • Normal Build
 project folder -->mvn install;
  • Normal Clean and Build
 project folder -->mvn clean install;

Related Posts:

  • Android - Covert Cursor to ArrayList   final ListView listview = (ListView) findViewById(R.id.listview);     String[] values = new String[] { "Android", "iPhone", "WindowsMobile",      &nb… Read More
  • Using lists in Android public class ListViewExampleActivity extends Activity {   @Override   protected void onCreate(Bundle savedInstanceState) {     super.onCreate(savedInstanceState);     setC… Read More
  • JEE : Login Form HTML - JS - MySQL =======MYSQL======= --Login--- C:\Program Files (x86)\MySQL\MySQL Server 5.6>mysql -u root -p Enter password: ****     //root mysql> CREATE DATABASE db; Query OK, 1 row affected (0.00 sec) mysql> U… Read More
  • Android - R.java is missing 1. Resource name is not be the reserved keywords which using layout xml files eg: false.png, true.png ...etc 2.  Layout folder contain malformed xml … Read More
  • Android - adding child view dynamically,set index ..etc Add element dynamically Linear Layout layout= (Linear Layout)findViewById(R.id.my_layout); ImageButton saveBtn=new ImageButton(this); saveBtn.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRA… Read More

0 comments:

Post a Comment