Skip to content

Commit

Permalink
Added dependency to NeoJSON in baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
anquetil committed Sep 1, 2023
1 parent d7c713e commit 07f540a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/BaselineOfEsope/BaselineOfEsope.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ BaselineOfEsope >> defineDependencies: spec [
with: [ spec repository: 'github://kursjan/petitparser2' ];

baseline: 'FamixFortran'
with: [ spec repository: 'github://moosetechnology/Famix-Fortran' ]
with: [ spec repository: 'github://moosetechnology/Famix-Fortran' ] ;

baseline: 'NeoJSON'
with: [ spec repository: 'github://svenvc/NeoJSON' ]

]

Expand All @@ -41,7 +44,7 @@ BaselineOfEsope >> defineGroups: spec [
BaselineOfEsope >> definePackages: spec [
spec
repository: 'github://moosetechnology/Esope';
package: 'EsopeImporter' with: [ spec requires: #(PetitParser2) ];
package: 'EsopeImporter' with: [ spec requires: #(PetitParser2 NeoJSON) ];
package: 'EsopeImporter-Tests' with: [ spec requires: #(EsopeImporter) ];
package: 'Famix-Esope-Entities' with: [ spec requires: #(FamixFortran) ] ;
package: 'Famix-Esope-Generator' with: [ spec requires: #(FamixFortran) ] ;
Expand Down

0 comments on commit 07f540a

Please sign in to comment.