Project

General

Profile

Improvement #2145

Updated by Henning Blohm about 1 year ago

Currently when including a java component (include) into another java component (includer), the include may have dependencies that need to be maintained in the includer to make sure the include is effective. With this improvement we enhance the include mechanism to have an includees public references added to the private or public references of the including component for public or private inclusion respectively. 

 h2. Acceptance Criterias 

 * There is a new reference query parameter *resolve* that resolves to "public", "private", or "test" references of the qualified reference.  
 * This query and the *expand* query is documented 

  

 h2. Use 

 Given this new reference query parameter, we can model the solutions like this: 

 <pre><code class="bash"> 
 java.publicIncludes=includee 
 java.publicReferences=includee?resolve=public 
 </code></pre> 

Back