Maven 需要额外的依赖来构建项目,而 Gradle 不需要
Maven needs extra dependency to build the project whereas Gradle doesn't
我目前正在学习JFoenix library. There is a nice demo and instructions如何运行它。
JFoenix 使用 Gradle,但我需要使用 Maven,因此我决定使用 Maven 重新创建演示项目以进行进一步测试。
当我尝试 运行 我新创建的项目时出现问题。结果发现有些类(例如de.jensd.fx.glyphs.GlyphIcon
)没有找到。我发现 de.jensd:fontawesomefx-fontawesome:4.7.0-5
在 运行 时间内依赖于 de.jensd:fontawesomefx-commons:8.15
。所以我决定将它添加为编译依赖项和演示 运行 正确。但是demo的build.gradle只指定了de.jensd:fontawesomefx-fontawesome:4.7.0-5
.
Maven 和 Gradle 是否以不同的方式处理依赖关系?还是特例?
这是我的 pom.xml
:
<?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>jfoenix</groupId>
<artifactId>demo</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- Bintray is needed for de.jensd:fontawesomefx-fontawesome. -->
<repositories>
<repository>
<id>central</id>
<name>bintray</name>
<url>https://jcenter.bintray.com</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.jfoenix</groupId>
<artifactId>jfoenix</artifactId>
<version>8.0.7</version>
</dependency>
<dependency>
<groupId>io.datafx</groupId>
<artifactId>datafx</artifactId>
<version>8.0.1</version>
</dependency>
<dependency>
<groupId>io.datafx</groupId>
<artifactId>flow</artifactId>
<version>8.0.1</version>
</dependency>
<dependency>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-fontawesome</artifactId>
<version>4.7.0-5</version>
</dependency>
<!-- Without this dependency the project can't be compiled. -->
<dependency>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-commons</artifactId>
<version>8.15</version>
</dependency>
</dependencies>
</project>
P.S。我不确定这个问题的标题是否可以。所以欢迎提出建议。
P.P.S。如果您尝试使用我的 pom.xml
编译演示,您必须注释掉 demos.components.AnimationTemplateDemo.java
,因为 com.jfoenix.transitions.template
包是 new 并且在 com.jfoenix:jfoenix:8.0.7
中不可用。
jcenter 的 pom.xml 文件是这个:
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-fontawesome</artifactId>
<version>4.7.0-5</version>
<dependencies>
<dependency>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-commons</artifactId>
<version>8.15</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
如您所见,fontawesomefx-commons 仅在运行时 时才需要。我不确定这是为什么,但它解释了为什么它没有在 编译 时被拉出。
我现在不知道 gradle 从哪里提取它的依赖项,你不提它,但我的猜测是那里的配置不是运行时,而是编译。
Edit : fontawesomefx-fontawesome 以后版本的范围是compile。所以看来4.7.0-5版本中指定的runtime范围很可能是个bug…
pom.xml 版本 4.7.0-9:
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-fontawesome</artifactId>
<version>4.7.0-9</version>
<dependencies>
<dependency>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-commons</artifactId>
<version>9.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
我目前正在学习JFoenix library. There is a nice demo and instructions如何运行它。
JFoenix 使用 Gradle,但我需要使用 Maven,因此我决定使用 Maven 重新创建演示项目以进行进一步测试。
当我尝试 运行 我新创建的项目时出现问题。结果发现有些类(例如de.jensd.fx.glyphs.GlyphIcon
)没有找到。我发现 de.jensd:fontawesomefx-fontawesome:4.7.0-5
在 运行 时间内依赖于 de.jensd:fontawesomefx-commons:8.15
。所以我决定将它添加为编译依赖项和演示 运行 正确。但是demo的build.gradle只指定了de.jensd:fontawesomefx-fontawesome:4.7.0-5
.
Maven 和 Gradle 是否以不同的方式处理依赖关系?还是特例?
这是我的 pom.xml
:
<?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>jfoenix</groupId>
<artifactId>demo</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- Bintray is needed for de.jensd:fontawesomefx-fontawesome. -->
<repositories>
<repository>
<id>central</id>
<name>bintray</name>
<url>https://jcenter.bintray.com</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.jfoenix</groupId>
<artifactId>jfoenix</artifactId>
<version>8.0.7</version>
</dependency>
<dependency>
<groupId>io.datafx</groupId>
<artifactId>datafx</artifactId>
<version>8.0.1</version>
</dependency>
<dependency>
<groupId>io.datafx</groupId>
<artifactId>flow</artifactId>
<version>8.0.1</version>
</dependency>
<dependency>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-fontawesome</artifactId>
<version>4.7.0-5</version>
</dependency>
<!-- Without this dependency the project can't be compiled. -->
<dependency>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-commons</artifactId>
<version>8.15</version>
</dependency>
</dependencies>
</project>
P.S。我不确定这个问题的标题是否可以。所以欢迎提出建议。
P.P.S。如果您尝试使用我的 pom.xml
编译演示,您必须注释掉 demos.components.AnimationTemplateDemo.java
,因为 com.jfoenix.transitions.template
包是 new 并且在 com.jfoenix:jfoenix:8.0.7
中不可用。
jcenter 的 pom.xml 文件是这个:
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-fontawesome</artifactId>
<version>4.7.0-5</version>
<dependencies>
<dependency>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-commons</artifactId>
<version>8.15</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
如您所见,fontawesomefx-commons 仅在运行时 时才需要。我不确定这是为什么,但它解释了为什么它没有在 编译 时被拉出。
我现在不知道 gradle 从哪里提取它的依赖项,你不提它,但我的猜测是那里的配置不是运行时,而是编译。
Edit : fontawesomefx-fontawesome 以后版本的范围是compile。所以看来4.7.0-5版本中指定的runtime范围很可能是个bug…
pom.xml 版本 4.7.0-9:
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-fontawesome</artifactId>
<version>4.7.0-9</version>
<dependencies>
<dependency>
<groupId>de.jensd</groupId>
<artifactId>fontawesomefx-commons</artifactId>
<version>9.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>