当前位置: 首页 > 知识库问答 >
问题:

无法在命令行中运行gradle程序

夔庆
2023-03-14

分级测试

任务:编译Java FAILED

失败:生成失败,出现异常。

  • 出错的地方:任务': compileJava'执行失败。

无法解析配置': detachedConfiguration1'的所有依赖项。无法解析org.springframework.boot: spring-boot-依赖项:2.2.7.RELEASE.需要:项目:

共有1个答案

慕项明
2023-03-14
    buildscript {
    repositories {
       
        maven {
            url "https://rb-artifactory.bosch.com/artifactory/gradle-plugins-remote/"
            credentials {
             username "***"
             password "***" 
            }
          }
            
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.7.RELEASE")
        
    }
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: "io.spring.dependency-management"
apply plugin: 'org.springframework.boot'
apply plugin: 'war'
apply plugin: 'jacoco'
apply plugin: 'application'


jacocoTestReport{
    reports{
        xml.enabled true
        csv.enabled true
        html.enabled true
        }
    
}

// This comes out to package + '.' + mainClassName
mainClassName = 'com.bosch.shop.ShopAuthentication'


repositories {
mavenCentral()
/*    maven {
        credentials {
                username "EED1COB"
             password "AP28P2xA2dB6pCNDcbrxx7uVuNo"
            }
        url "https://rb-artifactory.bosch.com/artifactory/gradle-mvn-remote/"
     }*/
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

configurations {
    providedRuntime
}

bootRun {
    // allows ./gradlew bootRun -Dspring.profiles.active=dev
    systemProperties System.properties
}

dependencies {

    implementation("org.springframework.boot:spring-boot-starter-web"){
    exclude group: 'org.apache.tomcat'
    } 
    implementation( "mysql:mysql-connector-java:5.1.28" )
    implementation("org.springframework.boot:spring-boot-starter-data-jpa")
    implementation('org.springframework.boot:spring-boot-starter-data-mongodb')
    implementation("io.springfox:springfox-swagger2:2.6.1")
    //implementation group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'
    implementation("io.springfox:springfox-swagger-ui:2.6.1")
    //implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'
    implementation("com.google.code.gson:gson:2.8.2")
    implementation("com.ocpsoft:ocpsoft-pretty-time:1.0.7")
    implementation('org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.0.2')
    implementation ('org.json:json:20180130')
    implementation("com.jayway.jsonpath:json-path:2.0.0")
    implementation("com.mashape.unirest:unirest-java:1.4.9")
    implementation("io.jsonwebtoken:jjwt:0.5.1")
    implementation platform('org.springframework.boot:spring-boot-dependencies:2.0.5.RELEASE')
    implementation 'org.springframework.boot:spring-boot-starter-web'

    //implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.10.2'
    
    //overridden-
    //implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.8.0-beta2'
    implementation group: 'com.google.guava', name: 'guava', version: '27.1-jre'
    implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '9.0.37'
    implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-websocket', version: '9.0.37'
    implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-el', version: '9.0.37'
    
    implementation("com.sun.jersey:jersey-client:1.9.1")
    implementation group: 'com.zaxxer', name: 'HikariCP', version: '3.2.0'
    implementation group: 'org.locationtech.spatial4j', name: 'spatial4j', version: '0.7'
    testImplementation('org.springframework.boot:spring-boot-starter-test')
    providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
    testImplementation("junit:junit:4.12")
    testImplementation group: 'org.mockito', name: 'mockito-core', version: '2.23.0'  
    implementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.9.7'
    implementation group: 'net.bytebuddy', name: 'byte-buddy-agent', version: '1.9.7'
       // https://mvnrepository.com/artifact/com.azure/azure-core
    implementation group: 'com.azure', name: 'azure-core', version: '1.22.0'
   // https://mvnrepository.com/artifact/com.azure/azure-messaging-servicebus
    implementation group: 'com.azure', name: 'azure-messaging-servicebus', version: '7.4.2' 
    implementation group: 'io.projectreactor', name: 'reactor-core', version: '3.4.12'
    implementation group: 'com.azure', name: 'azure-core-amqp', version: '2.3.4'
    implementation group: 'org.mongodb', name: 'mongo-java-driver', version: '3.12.10'
}

configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
        if (details.requested.group == 'org.apache.logging.log4j') {
            details.useVersion '2.15.0'
        }
    }
}
 类似资料:
  • 我在从命令行运行一个java程序时遇到了严重的麻烦。我觉得我已经接近弄清楚哪里出了问题,但我只是不知所措,我需要帮助。 我正在尝试用以下命令运行一个简单的Hello World程序(在windows上的VSCode中,使用bash terminal): 这根本不起作用,但是,写入文件的完整路径确实起作用,所以像这样的东西是起作用的。 此外,使用F5运行文件也可以正常工作。我希望用命令行参数运行我的

  • 我有一个示例项目:https://github.com/svprdga/web-reactive-frameworks-comparison/tree/master/vertx-ktorm 我想从CLI运行它,但是我不能。我试图创建jar文件,但是当我运行它时,它提示: 有什么帮助吗?

  • 我对gradle和npm都是新手,我正在尝试启动并运行一个Grails3-AngularJS2示例应用程序。 这是应用程序https://github.com/agileorbit/grails3-angular2-starter 当我尝试并运行该应用程序时,我得到以下异常,似乎发生在这里

  • 在阅读了多篇关于这个主题和Gradle手册的文章后,我正在尝试运行下面的代码块。我运行下面的命令并得到以下错误:execCommand==null! 关于我在下面的代码块中做错了什么有什么想法吗?

  • 问题内容: 我尝试使用Jekyll新命令,但是它不起作用,并在出现错误后出现。 我正在使用Mac OS X 10.8.5 Mountain Lion。 但这对我的情况不起作用。我卸载并重新安装了json,但没有任何反应。如果您知道其他解决方案,请告诉我。自本周初以来,我一直在解决这个问题。 我的宝石清单和宝石环境如下。 请给我建议以帮助我。谢谢! 3月7日更新。 以防万一您想查看自制软件列表, 2

  • 问题内容: 有没有办法在Java应用程序中运行此命令行? 我可以用命令运行它,但是我不能在Java中运行它。 问题答案: