Error Creating a Maven Project

后端 未结 9 1019
遥遥无期
遥遥无期 2021-01-04 11:38

I\'m trying to create a maven project by following this tutorial https://docs.mulesoft.com/mule-user-guide/v/3.7/building-a-mule-application-with-maven-in-studio that time t

9条回答
  •  悲哀的现实
    2021-01-04 12:39

    I noticed that if your flow involves API Kit and Dataweave, additional dependencies need to be added.

            
                
                    
                        
                            
                                
                                    src/main/api/
                                
                            
                        
                    
                
            
    

    and

        
            org.mule.modules
            mule-module-apikit
            ${mule.version}
            provided
        
        
            com.mulesoft.weave
            mule-plugin-weave_2.11
            ${mule.version}
            provided
        
        
            org.mule.modules
            mule-module-http
            ${mule.version}
            provided
        
    

提交回复
热议问题