Skip to content

Commit

Permalink
Merge pull request #67 from moosetechnology/feature/can-load-famix-co…
Browse files Browse the repository at this point in the history
…nnector

add baseline for famix connector
  • Loading branch information
badetitou authored Sep 19, 2024
2 parents e4d30af + bd793e5 commit e51f444
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion src/BaselineOfGitLabHealth/BaselineOfGitLabHealth.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ BaselineOfGitLabHealth >> baseline: spec [
self definePackages: spec.
self defineGroups: spec.
self defineJiraConnector: spec.
self defineFamixConnector: spec.

spec for: #( #WithoutFamix ) do: [
spec
Expand Down Expand Up @@ -50,6 +51,19 @@ BaselineOfGitLabHealth >> defineDependencies: spec [
]
]

{ #category : #baselines }
BaselineOfGitLabHealth >> defineFamixConnector: spec [

spec
package: 'GitProject-FamixConnector'
with: [ spec requires: #( 'GitProject-FamixConnector-Model' ) ];
package: 'GitProject-FamixConnector-Model';
package: 'GitProject-FamixConnector-Generator'
with: [ spec requires: #( 'GitProject-FamixConnector-Model' ) ];
package: 'GitProject-FamixConnector-Tests'
with: [ spec requires: #( 'GitProject-FamixConnector' ) ]
]

{ #category : #baselines }
BaselineOfGitLabHealth >> defineGroups: spec [

Expand All @@ -58,6 +72,12 @@ BaselineOfGitLabHealth >> defineGroups: spec [
with:
#( 'GitProject-JiraConnector' 'GitProject-JiraConnector-Generator'
'GitProject-JiraConnector-Tests' ).

spec
group: 'Famix'
with:
#( 'GitProject-FamixConnector' 'GitProject-FamixConnector-Generator'
'GitProject-FamixConnector-Tests' ).
spec
group: 'Core'
with: #( 'GitLabHealth-Model' 'GitLabHealth-Model-Extension'
Expand All @@ -67,7 +87,8 @@ BaselineOfGitLabHealth >> defineGroups: spec [
'GitLabHealth-Model-Importer' 'GitLabHealth-Model-Importer-Tests'
'GitHubHealth-Model-Importer-Tests'
'GLPHExtended-Model' 'GLPHExtended-Model-Tests'
'GLPHExtended-Model-Extension' 'GitLabHealth-Model-Analysis' 'GitLabHealth-Model-Analysis-Tests'
'GLPHExtended-Model-Extension' 'GitLabHealth-Model-Analysis'
'GitLabHealth-Model-Analysis-Tests'
'GitLabHealth-Visualization' 'GitLabProjectHealth-ExtendModel-Generator'
'GitLabProjectHealth-Model-Importer'
'GitLabProjectHealth-Model-Importer-Tests' ).
Expand Down

0 comments on commit e51f444

Please sign in to comment.