Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scanpipe/pipelines/deploy_to_develop.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,21 +250,21 @@ def map_jar_to_kotlin_source(self):
project=self.project, jvm_lang=jvm.KotlinLanguage, logger=self.log
)

@optional_step("Grammar")
@optional_step("Antlr")
def find_grammar_packages(self):
"""Find the java package of the .g/.g4 source files."""
d2d.find_jvm_packages(
project=self.project, jvm_lang=jvm.GrammarLanguage, logger=self.log
)

@optional_step("Grammar")
@optional_step("Antlr")
def map_grammar_to_class(self):
"""Map a .class compiled file to its .g/.g4 source."""
d2d.map_jvm_to_class(
project=self.project, jvm_lang=jvm.GrammarLanguage, logger=self.log
)

@optional_step("Grammar")
@optional_step("Antlr")
def map_jar_to_grammar_source(self):
"""Map .jar files to their related source directory."""
d2d.map_jar_to_jvm_source(
Expand Down