Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Dec 4, 2024
1 parent ca176c6 commit e2f751a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions test/core/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ spotbugs.home_dir - Location of the spotbugs tool. If not set, spo
extraArgs="${zserio.extra_args}">
<classpath>
<file name="${zserio.jar_dir}/zserio_core.jar"/>
<file name="${zserio.jar_dir}/antlr-4.7.2-complete.jar"/>
<file name="${zserio.jar_dir}/commons-cli-1.4.jar"/>
<file name="${zserio.jar_dir}/freemarker-2.3.28.jar"/>
</classpath>
<args/>
</zserio>
Expand Down
7 changes: 6 additions & 1 deletion test/extensions/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,12 @@ spotbugs.home_dir - Location of the spotbugs tool. If not set, spo
<zserio srcPath="${@{testName}.zs.in_dir}" srcFile="@{zsFile}" ignoreError="@{ignoreErrors}"
extraArgs="${zserio.extra_args}">
<classpath>
<file name="${zserio.jar_dir}/zserio_core.jar"/>
<fileset dir="${zserio.jar_dir}">
<file name="${zserio.jar_dir}/zserio_core.jar"/>
<file name="${zserio.jar_dir}/antlr-4.7.2-complete.jar"/>
<file name="${zserio.jar_dir}/commons-cli-1.4.jar"/>
<file name="${zserio.jar_dir}/freemarker-2.3.28.jar"/>
</fileset>
</classpath>
<arg name="java" value="${@{testName}.zs.out_dir}"/>
<args/>
Expand Down

0 comments on commit e2f751a

Please sign in to comment.