Skip to content

Commit

Permalink
add famix2java as dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
badetitou committed May 2, 2024
1 parent f18f54b commit 3287c97
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/BaselineOfCarrefour/BaselineOfCarrefour.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,15 @@ BaselineOfCarrefour >> customProjectAttributes [
{ #category : #baselines }
BaselineOfCarrefour >> defineDependencies: spec [

spec baseline: 'FASTJava' with: [
spec baseline: 'FASTJava' with: [
spec
loads: #( 'all' );
repository: 'github://moosetechnology/FAST-Java:v3.0.5/src' ].
spec for: #NeedsTinyLogger do: [
spec
baseline: 'FAMIX2Java'
with: [
spec repository: 'github://moosetechnology/FAMIX2Java:v4/src' ].
spec for: #NeedsTinyLogger do: [
spec
baseline: 'TinyLogger'
with: [ spec repository: 'github://jecisc/TinyLogger:v1.x.x/src' ] ]
Expand Down Expand Up @@ -71,7 +75,7 @@ BaselineOfCarrefour >> definePackages: spec [
"Exporter"
spec
package: 'Carrefour-Exporter'
with: [ spec requires: #( 'Carrefour-Model' ) ].
with: [ spec requires: #( 'Carrefour-Model' 'FAMIX2Java' ) ].
spec
package: 'Carrefour-Exporter-Tests'
with: [ spec requires: #( 'Carrefour-Exporter' ) ]
Expand Down

0 comments on commit 3287c97

Please sign in to comment.