Skip to content

Commit f4d6bfd

Browse files
committed
Fix CI?
1 parent 332d6b1 commit f4d6bfd

File tree

1 file changed

+25
-8
lines changed

1 file changed

+25
-8
lines changed

src/BaselineOfFamixDiff/BaselineOfFamixDiff.class.st

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,29 @@ Class {
99
BaselineOfFamixDiff >> baseline: spec [
1010

1111
<baseline>
12-
spec for: #common do: [
13-
spec
14-
package: 'Famix-Diff-ChangeModel';
15-
package: 'Famix-Diff-Core' with: [ spec requires: #( 'Famix-Diff-ChangeModel' ) ];
16-
package: 'Famix-Diff-Core-Tests' with: [ spec requires: #( 'Famix-Diff-Core' ) ].
17-
spec
18-
group: 'core' with: #( 'Famix-Diff-Core' 'Famix-Diff-ChangeModel' );
19-
group: 'core-tests' with: #( 'core' 'Famix-Diff-Core-Tests' ) ]
12+
spec for: #common do: [
13+
spec
14+
package: 'Famix-Diff-ChangeModel';
15+
package: 'Famix-Diff-Core' with: [ spec requires: #( 'Famix-Diff-ChangeModel' ) ];
16+
package: 'Famix-Diff-Core-Tests' with: [ spec requires: #( 'Famix-Diff-Core' ) ].
17+
spec
18+
group: 'core' with: #( 'Famix-Diff-Core' 'Famix-Diff-ChangeModel' );
19+
group: 'core-tests' with: #( 'core' 'Famix-Diff-Core-Tests' ) ].
20+
21+
spec for: #NoFamix do: [
22+
self famix: spec.
23+
spec package: 'Famix-Diff-Core' with: [ spec requires: #( 'Famix' ) ] ]
24+
]
25+
26+
{ #category : 'accessing' }
27+
BaselineOfFamixDiff >> customProjectAttributes [
28+
29+
'BaselineOfFamix' asPackageIfAbsent: [ ^ #( #NeedsFamix ) ].
30+
^ #( )
31+
]
32+
33+
{ #category : 'dependencies' }
34+
BaselineOfFamixDiff >> famix: spec [
35+
36+
spec baseline: 'Famix' with: [ spec repository: 'github://moosetechnology/Famix:development/src' ]
2037
]

0 commit comments

Comments
 (0)