Skip to content

Commit

Permalink
Fix baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel-Darbord committed Dec 9, 2024
1 parent 57e8a74 commit 315e9d6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
18 changes: 10 additions & 8 deletions src/BaselineOfFamixValue/BaselineOfFamixValue.class.st
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Class {
#name : #BaselineOfFamixValue,
#superclass : #BaselineOf,
#category : #BaselineOfFamixValue
#name : 'BaselineOfFamixValue',
#superclass : 'BaselineOf',
#category : 'BaselineOfFamixValue',
#package : 'BaselineOfFamixValue'
}

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfFamixValue >> baseline: spec [

<baseline>
Expand All @@ -14,7 +15,7 @@ BaselineOfFamixValue >> baseline: spec [
self groups: spec ]
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfFamixValue >> dependencies: spec [

spec
Expand All @@ -27,7 +28,7 @@ BaselineOfFamixValue >> dependencies: spec [
spec repository: 'github://moosetechnology/Carrefour:v5/src' ]
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfFamixValue >> groups: spec [

spec
Expand All @@ -43,7 +44,7 @@ BaselineOfFamixValue >> groups: spec [
'FASTJava' 'Carrefour' )
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfFamixValue >> packages: spec [

spec
Expand All @@ -55,7 +56,8 @@ BaselineOfFamixValue >> packages: spec [
with: [
spec requires: #( 'Famix-Value-Entities' 'Famix-Value-Types' ) ];
package: 'Famix-Value-Exporter'
with: [ spec requires: 'Famix-Value-Entities' ];
with: [
spec requires: #( 'Famix-Value-Entities' 'Famix-Value-Types' ) ];
package: 'Famix-Value-Exporter-Tests'
with: [ spec requires: 'Famix-Value-Exporter' ];
package: 'Famix-Value-Types';
Expand Down
2 changes: 1 addition & 1 deletion src/BaselineOfFamixValue/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : #BaselineOfFamixValue }
Package { #name : 'BaselineOfFamixValue' }

0 comments on commit 315e9d6

Please sign in to comment.