- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用NetBeans构建JavaFX项目,但是当我运行它时,我有一个this:
Plugin org.codehaus.mojo:exec-maven-plugin:1.2.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.codehaus.mojo:exec-maven-plugin:jar:1.2.1: Could not transfer artifact org.codehaus.mojo:exec-maven-plugin:pom:1.2.1 from/to HTTP (http://repo.maven.apache.org/maven2): Access denied to: http://repo.maven.apache.org/maven2/org/codehaus/mojo/exec-maven-plugin/1.2.1/exec-maven-plugin-1.2.1.pom , ReasonPhrase:Forbidden. -> [Help 1]
<?xml version="1.0" encoding="UTF-8"?> <settings> <proxies>
<proxy>
<active />
<protocol>http</protocol>
<username>username</username>
<password>password</password>
<port>8080</port>
<host>proxyhost</host>
<id/>
</proxy> </proxies>
<mirrors>
<mirror>
<id>HTTP</id>
<name>HTTP Central</name>
<url>http://repo.maven.apache.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror> </mirrors> </settings>
<?xml version="1.0" encoding="UTF-8"?>
<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>com.bega</groupId>
<artifactId>Chronos</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Chronos</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mainClass>com.bega.chronos.MainApp</mainClass>
</properties>
<organization>
<!-- Used as the 'Vendor' for JNLP generation -->
<name>Your Organisation</name>
</organization>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>unpack-dependencies</id>
<phase>package</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<excludeScope>system</excludeScope>
<excludeGroupIds>junit,org.mockito,org.hamcrest</excludeGroupIds>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>unpack-dependencies</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${java.home}/../bin/javafxpackager</executable>
<arguments>
<argument>-createjar</argument>
<argument>-nocss2bin</argument>
<argument>-appclass</argument>
<argument>${mainClass}</argument>
<argument>-srcdir</argument>
<argument>${project.build.directory}/classes</argument>
<argument>-outdir</argument>
<argument>${project.build.directory}</argument>
<argument>-outfile</argument>
<argument>${project.build.finalName}.jar</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>default-cli</id>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${java.home}/bin/java</executable>
<commandlineArgs>${runfx.args}</commandlineArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArguments>
<bootclasspath>${sun.boot.class.path}${path.separator}${java.home}/lib/jfxrt.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<configuration>
<additionalClasspathElements>
<additionalClasspathElement>${java.home}/lib/jfxrt.jar</additionalClasspathElement>
</additionalClasspathElements>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx</artifactId>
<version>8.9</version>
</dependency>
</dependencies>
</project>
最佳答案
我假设存储库服务器是临时的,无法正常工作。至少我能够下载错误消息中提到的文件。
不幸的是,Maven缓存了未找到的错误。因此,有很多关于重置缓存状态并强制重新下载的问题。
恕我直言,最简单的方法是从本地Maven存储库中删除有问题的工件的所有数据,该Maven存储库位于用户主目录的子目录.m2/repository
中。
打开.m2/repository
并进入路径org/codehaus/mojo/exec-maven-plugin/
。在那里删除子目录1.2.1
和所有包含的文件。 Maven将在下次需要它们时自动下载它们。
关于netbeans - Maven codehaus.mojo无法解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49858465/
我创建了一个带有一些 mojo 的 maven 插件,每个插件都有一个非常特殊的用途。但是对于最终用户来说,一次执行其中一些会很好(顺序至关重要)。 那么如何从一个 mojo 执行中执行其他 mojo
我在玩 Mojolicious 和 websockets。我想将服务器上多个外部命令的输出发送到网页。我在连接和接收消息方面没有问题,但我还想将消息发送回服务器以停止外部命令,同时让其他人继续向客户端
我开发的插件中抛出 ClassNotFoundException。无法找到的类肯定存在,并且其关联项目作为依赖项包含在执行项目的 pom.xml 文件中,如下所示: com.example
我有一个包含 2 个 Maven 插件模块的 mutli 项目:base 和 child (maven-plugin)。 child 依赖基地。 基础插件只有一个类: public abstract
仅当将“-p”添加到 org.codehaus.mojo:exec-maven-plugin:1.6.0:exec 插件时,以下 pom.xml 执行才会失败,删除此参数后它运行正常,但我需要争论,有
我遇到了很多麻烦,我想安装 Mojo::DOM,但我在互联网上找不到安装它的指南。 最佳答案 apt install libmojolicious-perl 或者 cpan install Mojo:
我正在尝试编写一个 maven 插件,包括 mvn 配置参数中自定义类的映射。 有谁知道等效类“Person”的样子: http://maven.apache.org/guides/mini/guid
我有基于 mojolicious 的小应用程序。我在公共(public)目录中有 index.html。当用户要求输入“/”时,我希望有到该文件的路由。 我写了两个解决方案,但我不喜欢它们。 第一个解
阅读开发 maven 插件的指南,我看到您可以定义列表参数和任意对象参数,但是是否可以定义一个参数来标识对象列表,定义为: /** * @parameter */ private List obj
为什么 media:group 出现在 dom 中却不起作用? #!/usr/bin/env perl use warnings; use 5.12.0; use Mojo::UserAgent; m
我有以下使用 Test::Mojo 的测试脚本。当我使用 perl 从命令行运行它时,它输出正确。但是,当我通过“prove -v”运行它时,Mojo 日志记录会重复,并且其中之一不会通过“on me
为什么 media:group 出现在 dom 中却不起作用? #!/usr/bin/env perl use warnings; use 5.12.0; use Mojo::UserAgent; m
我已将 mojo 的插件 build-helper 添加到我的项目 pom 中,为我的集成测试生成一个新的测试源文件夹。当我运行该阶段时,生成测试源 mvn generate-test-sour
是否可以在另一个参数中使用定义的参数?例如,我尝试了这个并发现这是不允许的: @Parameter(required = true) private String semester; @Paramet
如果我尝试在http://flexmojos.sonatype.org/getting-started.html上开始使用我收到一些错误。有人可以帮我吗?我是 Maven 新手,但由于这是一个入门,我
这里有我的 Maven Mojo: import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoEx
我正在开发一种魔力,我设想它有 2 个目标。 例如 /** * @goal validate-user-config * @goal build-user-project
我想知道为什么没有地方说 Maven 中的 getLog() 是如何工作的?如果有人能用几句话描述这个方法的主要任务,那就太好了。 最佳答案 你读过文档了吗? http://maven.apache.
在 Mojo 中,我如何以编程方式获取其他 POM 文件的 Mojo 实例? 在我的用例中,我有一个 Mojo X,它允许在 POM 中声明对其他 Artifact Y 的引用(假设类似于 Depen
我正在使用 Mojolicious 和 Mysql。连接到数据库是simple : url => Mojo::MySQL5->new( 'mysql://user:password@127.0.0
我是一名优秀的程序员,十分优秀!