MuleStudio or its plugin for eclipse uses mule-config.xml file by default. Is there an option to override the file name?
Asked
Active
Viewed 721 times
2 Answers
1
There are two options.
Right click on the Mule Project and go to
Run As --> Run COnfigurations
Then Select
Java Application
. Then right click and selectNew
Add your config file name as shown in the picture and run it.Create a mule-deploy.properties and keep it in the src/main/app folder. Add the configuration resource entry to it. This will be helpful when you package and deploy mule application onto a mule standalone server.
config.resources=my-mule-config.xml
Refer to the following link for more detials on Mule in Eclipse.
Creating a Mule project in Eclipse
Hope this helps.

Community
- 1
- 1

user1760178
- 6,277
- 5
- 27
- 57
0
you can rename the file by right clicking on it and select refactor or select the file and click F2 to rename it and then run the application as Mule run configurations.

Lakshmi Prasanna
- 1
- 2