- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将从pom.xml开始:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>HPK</groupId>
<artifactId>WRB</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>WRB</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4</artifactId>
<version>4.5.3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>auto-clean</id>
<phase>initialize</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.3</version>
<executions>
<execution>
<configuration>
<arguments>
<argument>-visitor</argument>
<argument>-package</argument>
<argument>wrb.grammar</argument>
</arguments>
</configuration>
<id>antlr</id>
<goals>
<goal>antlr4</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-clean-plugin
</artifactId>
<versionRange>
[3.0.0,)
</versionRange>
<goals>
<goal>clean</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
maven install
时,maven应该从
wrb.grammar
包内的antlr4插件生成源,但事实并非如此。它可以执行所有操作,但是将源放入这些目录中,只是将它们放在所谓的“默认包”中,这只是
antlr/generated-sources
的根。
maven-install
没问题。除了我们的操作系统和eclipse版本,其他所有内容都是相同的。
最佳答案
我已经检查了antlr4版本4.3的来源。 -package
参数仅由代码生成器模板使用,而不在实际工具源代码中的任何位置使用(请参阅Github search results for genPackage
)。因此,它不会影响输出文件的位置。
而是根据相应输入文件的位置确定每个输出文件的位置(请参见源文件中的here和here)。这符合maven plugin docs中的解释:
If your grammar is intended to be part of a package called org.foo.bar then you would place it in the directory src/main/antlr4/org/foo/bar. The plugin will then produce .java and .tokens files in the output directory target/generated-sources/antlr4/org/foo/bar When the Java files are compiled they will be in the correct location for the Javac compiler without any special configuration. The generated java files are automatically submitted for compilation by the plugin.
-package
选项。当插件从输入文件路径派生
-package
参数的值并将其自动添加到antlr调用中时(请参阅
here in the sources)。这可能也是为什么Maven插件中无法直接将
-pacakge
用作
configuration parameter的原因。
src/main/antlr4/wrb/grammar
中,从配置中删除
-package
参数,一切按预期进行。
<arguments>
<argument>-visitor</argument>
</arguments>
<visitor>true</visitor>
关于eclipse - Maven仅在默认包中生成Antlr源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46798136/
我使用这些 instructions 在 R 中制作了一个包.我使用 RStudio,我想向包中添加一个新功能。 我是否只是将函数放入 R 脚本并将其拖到名为 R 的包中的文件夹中?如果这样做,是否需
我正在 Rstudio 中构建我的 R 包,当我厌倦了创建包的小插图时遇到了一些意想不到的问题。当我在 Rstudio 中点击构建/加载面板时,出现小插图错误,同时创建了包的文档。为了可能解决我遇到的
我编写了一个 Delphi 包,其中两个组件使用我放置在 GraphContour.res 中的相同 PNG 资源。使用以下脚本创建文件: compile_res.bat: @brcc32 Graph
我有一个包含多个文件的目录,我想将这些文件包含在 Wix 项目构建的 msi 包中。 /database /database/migration11.txt /database/migration21
我想使用基于 git describe 命令的包版本。为此,我使用函数 get_version() 创建了 setup.py。此函数从 .version 文件中检索版本(如果存在),否则计算新的包版本
我创建了一个新的 django 应用程序并将其作为新包上传到 pypi。但是当我们将包安装到项目时,模板文件夹内的 html 文件没有显示。为什么会发生这种情况?下面还给出了 setup.py 文件(
我尝试执行这个 javascript 命令: document.querySelectorAll('div.Dashboard-section div.pure-u-1-1 span.ng-scope
我有(相当多的)静态文件需要与我的应用程序一起部署,该应用程序构建在遗留 .NET 库之上。其中包括几个 XML 和配置文件,以及一个 10 兆字节的只读数据库。 我看到的大多数论坛都指出实现此目的的
假设我有以下文件结构: +mypackage/ foo.m bar.m 如何向 help(mypackage) 的输出添加帮助? 在 python 中,我只是在 __init__.py 中添加
我正在尝试在 C# appx 包中包含数据文件或图像。我已尝试将文件添加到 csproj,并启用“复制到输出目录”,但它们不会出现在 AppXLayouts 目录中。 我在 dev.windows.c
我需要 Python 图像库中的 group4 解码,但为了构建它,我需要将一些更改放入发行版 libtiff-dev 包中。 以前从未做过这种事情,我很好奇从哪里开始。我需要在 libtiff 中进
我正在使用 AOSP,我想创建自己的库并在应用程序中使用它(来自 packages/app/)。我的图书馆只有一门课: import android.app.Fragment; import andr
是否可以在我的 apk 文件中添加一些存储程序版本、更新路径和其他有用数据的 XML 文件(注意:我指的不是 Android XML 文件)。我只想将该文件解压缩到本地数据文件夹的某个位置,我将使用它
问题 我想知道对于计划作为模块导入的 Python 目录的命名是否有标准约定。这意味着该目录包含一个空白的 __init__.py 背景 直到最近,我才很少考虑它,并且完全根据在文件系统级别有意义的内
我正在安装 git.install 的自定义版本包裹。我在 tools 目录中添加了一些额外的文件。 git.install tools file1 file2 choco
有没有办法为包中的示例 map 结构自动生成模板代码? 大多数软件包的根目录下都有一个/example 文件夹,用于展示软件包的功能。我不确定创建示例的“最佳”方式是什么,或者它是否重要。 我是否单独
我正在制作我的第一个 R 包,我正在尝试包含包依赖项。该软件包在我的机器上安装并运行良好,但我已经安装了所有依赖项。当另一个用户尝试安装并且他们没有安装所有依赖项时,他们会收到错误消息。 ERROR:
我正在尝试从以下网址的表格中抓取数据: http://www.nfpa.org/itemDetail.asp?categoryID=953&itemID=23033 问题是包含在 标签。当我使用以
我有一个 R我即将提交给 CRAN 的 GitHub 上的包。到目前为止,该包已经有一个广泛的 README.md 文档,其中显示: 包核心函数执行示例, 包演示执行示例, 一些基准测试结果。 供 G
我已经编写了供私有(private)使用的 Visual Studio 扩展。该软件包仍在开发中,但我想使用它并将其分发给我的同事。是否可以在 .vsix 包中包含调试符号 (.pdb)?与包编辑相比
我是一名优秀的程序员,十分优秀!