Saturday, April 2, 2016

Add new Maven Repository in JBoss Developer Studio


Apache Maven is one of the great project management tools that I used on the project that I was involved, and JBoss Developer Studio (JBD) support this tool for every maven project. The important things that we have to make attention to work with maven project in JBD is the way to configure maven repository on it, this things to avoid maven build failed when build the project due to dependency library not found in our local repository.

In this series of blog, I'll try to share configuration step add maven repository in JBD.


Open JBoss Developer Studio and go to Preference page.

Under JBoss Tools choose JBoss Maven Integration, click Configure Maven Repository button and it will open page below
Click Add Repository button, fill in below information in respective field.
  • Profile ID: maven-repo
  • ID: central
  • Name: maven-repo
  • URL: https://repo1.maven.org/maven2
Please make sure checked checkbox Active by default and Enabled releases. Click OK when finish.

Add another repository if any. 

Click Finish following OK when complete.

Update the maven project as following



click OK and rebuild the maven project.

JBoss Fuse Server Installation


1.     Download Jboss Fuse 6.2.1 GA from here.
2.     Go to the folder where you have downloaded JBoss Fuse and unzip it.
3.     Edit <jboss-fuse-folder>/etc/users.properties and uncomment the admin user on the last line.
4.     Open your JBoss Developer Tools, go to Servers tab and add new JBoss Fuse 6.2 Server.




5.     On the JBoss Fuse Runtime window, select the folder where you installed JBoss Fuse and click Next.


6.     Use same credential as JBoss Fuse Server login. You can refer to jboss-fuse-full-6.2.0.redhat-133/etc/users.properties e.g Username: admin and Password: admin then Finish.


7.     Start JBoss Fuse Server on the Server tab.

Warning: Wait until start process to be 100%


8.     Once the server start, JBoss developer studio Shell tab show as following




9.     To verify Fuse was successfully installed, open a web browser and visit. Go to http://localhost:8181, login as username admin and password admin.

Reference Link: