[ERROR] 'dependencies.dependency.version' for org.springframework.boot:spring-boot-starter:jar is missing. @ line 22, column 21
[ERROR] 'dependencies.dependency.version' for org.projectlombok:lombok:jar is missing. @ line 33, column 21
[ERROR] 'dependencies.dependency.version' for org.apache.logging.log4j:log4j-api:jar is missing. @ line 39, column 21
[ERROR] 'dependencies.dependency.version' for org.apache.logging.log4j:log4j-core:jar is missing. @ line 43, column 21
[ERROR] 'dependencies.dependency.version' for org.springframework:spring-core:jar is missing. @ line 54, column 21
[ERROR] 'dependencies.dependency.version' for org.springframework:spring-aspects:jar is missing. @ line 58, column 21
[ERROR] 'dependencies.dependency.version' for org.springframework:spring-context:jar is missing. @ line 62, column 21
[ERROR] 'dependencies.dependency.version' for org.springframework:spring-web:jar is missing. @ line 66, column 21
[ERROR] 'dependencies.dependency.version' for org.springframework:spring-webmvc:jar is missing. @ line 70, column 21
[ERROR] 'dependencies.dependency.version' for org.springframework:spring-orm:jar is missing. @ line 74, column 21
[ERROR] 'dependencies.dependency.version' for org.springframework:spring-tx:jar is missing. @ line 78, column 21
您复制的项目似乎引用了另一个项目。如果打开pom.xml,那里可能有一个“parent”部分,其中定义了父项目:
<!-- Identifier of the parent project -->
<parent>
<groupId>...group of your parent project...</groupId>
<artifactId>... artefactId of your parent project ...</artifactId>
<version>... version of your parent project ...</version>
</parent
此父项目可能包含与版本的依赖关系。您复制的子模块包含没有版本的依赖项:
<!-- Version of the dependency is defined in parent pom in dependencyManagement section -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!-- here should be the version -->
</dependency>
您还需要在计算机上复制父项目,或者手动设置所有依赖项版本。
我的JavaFX项目可以在一台机器中加载图像,但是相同的代码不能在另一台机器中加载图像。 我有包结构(在src中)-/com/mypackagestructure/view/images/,它保存图像文件。 我的CSS文件位于-/com/mypackagestructure/view/Login。css 我在另一台机器上有完全相同的代码(安装了相同的操作系统、相同的Eclipse IDE和JDK/
问这个问题的另一种方法是: 如何使用Azure个人访问令牌验证项目,以便maven build可以下载发布在
问题内容: 我对SLF4J有依赖性。我收到此错误: 这是我的Maven条目: 问题出在哪里? 编辑: 没有log4j依赖性我得到以下异常 EDIT2 :这是我得到的示例树 问题答案: 我假设您正在使用Eclipse作为开发环境。 使用捆绑的Maven版本(m2e)时,Eclipse Juno,Indigo和Kepler不会抑制消息SLF4J:无法加载类“ org.slf4j.impl.Static
我刚在macbook pro(10.9)上安装了用于开发android应用程序的eclipse。我为eclipse安装了JDK1.7、android sdk和adt插件,然而,当我创建我的第一个android应用程序时,我得到了错误“未能加载project的属性文件...” 错误日志:!会话2015-03-10 09:08:33.363-------------------------------
我在intellij中创建了一个gradle/scala项目。这是我的项目结构 这些是我build.gradle文件的内容 主要课程内容 当我试图构建jar并执行它时,会出现一个错误。这里可能出了什么错?
我正在使用AndroidStudio 1.5.1,当我打开AndroidStudio时,我在控制台中遇到一个错误-“加载项目时出错:无法加载3个方面的详细信息…” 有人对我如何解决这个问题有什么想法吗?