Could not resolve all files for configuration gradle buildGradle build without testsHow to manually include external aar package using new Gradle Android Build SystemBuilding and running app via Gradle and Android Studio is slower than via EclipseGradle Build Android Project “Could not resolve all dependencies” errorHow to create a release signed apk file using Gradle?How/when to generate Gradle wrapper files?Getting Gradle dependencies in IntelliJ IDEA using Gradle buildAndroid Studio gradle takes too long to buildGradle build failure: Could not resolve all dependencies for configuration ':classpath'Error Build gradle: Could not resolve all files for configuration ':app:debugAndroidTestRuntimeClasspath

Roman Numeral Treatment of Suspensions

How to Reset Passwords on Multiple Websites Easily?

Why escape if the_content isnt?

How do scammers retract money, while you can’t?

How did Doctor Strange see the winning outcome in Avengers: Infinity War?

Hostile work environment after whistle-blowing on coworker and our boss. What do I do?

Is there a good way to store credentials outside of a password manager?

Why are there no referendums in the US?

Do the temporary hit points from the Battlerager barbarian's Reckless Abandon stack if I make multiple attacks on my turn?

System.debug(JSON.Serialize(o)) Not longer shows full string

How does the UK government determine the size of a mandate?

What can we do to stop prior company from asking us questions?

How did Arya survive the stabbing?

How to run a prison with the smallest amount of guards?

Inappropriate reference requests from Journal reviewers

Implement the Thanos sorting algorithm

Pole-zeros of a real-valued causal FIR system

Energy of the particles in the particle accelerator

Opposite of a diet

Short story about space worker geeks who zone out by 'listening' to radiation from stars

What does "I’d sit this one out, Cap," imply or mean in the context?

Is HostGator storing my password in plaintext?

How do we know the LHC results are robust?

Is oxalic acid dihydrate considered a primary acid standard in analytical chemistry?



Could not resolve all files for configuration gradle build


Gradle build without testsHow to manually include external aar package using new Gradle Android Build SystemBuilding and running app via Gradle and Android Studio is slower than via EclipseGradle Build Android Project “Could not resolve all dependencies” errorHow to create a release signed apk file using Gradle?How/when to generate Gradle wrapper files?Getting Gradle dependencies in IntelliJ IDEA using Gradle buildAndroid Studio gradle takes too long to buildGradle build failure: Could not resolve all dependencies for configuration ':classpath'Error Build gradle: Could not resolve all files for configuration ':app:debugAndroidTestRuntimeClasspath













0















I want tagsoup jar as dependency for one of my test case which reads a html.



In my build.gradle I have done these changes



asciidoctorj 
version = '1.5.4'


repositories
maven
url "http://mvn-nexus.my.company:8081/nexus/content/groups/public/"

mavenCentral()

compile(
'org.codehaus.groovy:groovy-all:2.4.14',
'org.codehaus.groovy.modules.http-builder:http-builder:0.7',
'org.apache.httpcomponents:httpclient:4.5.2',
'org.apache.httpcomponents:httpmime:4.5.2',
'commons-cli:commons-cli:1.2',
'ant:ant:1.7.0',
'com.cloudbees:groovy-cps:1.19',
'org.codehaus.gpars:gpars:1.2.1'
)

testCompile(
'junit:junit:4.12',
'org.codehaus.groovy:groovy-all:2.4.14',
'org.spockframework:spock-core:1.1-groovy-2.4',
'org.mockito:mockito-core:2.12.0',
'com.athaydes:spock-reports:1.4.0',
'org.slf4j:slf4j-api:1.7.13',
'org.slf4j:slf4j-simple:1.7.13',
'com.lesfurets:jenkins-pipeline-unit:1.0',
'org.ccil.cowan.tagsoup:1.2.1'
)

varsCompile sourceSets.main.output

}


But I get the following error in my jenkins build while building this project



  • What went wrong:
    Could not resolve all files for configuration ':testCompileClasspath'.


    Could not find org.ccil.cowan.tagsoup:0.9.7:.
    Required by:
    project :




What am I missing?










share|improve this question


























    0















    I want tagsoup jar as dependency for one of my test case which reads a html.



    In my build.gradle I have done these changes



    asciidoctorj 
    version = '1.5.4'


    repositories
    maven
    url "http://mvn-nexus.my.company:8081/nexus/content/groups/public/"

    mavenCentral()

    compile(
    'org.codehaus.groovy:groovy-all:2.4.14',
    'org.codehaus.groovy.modules.http-builder:http-builder:0.7',
    'org.apache.httpcomponents:httpclient:4.5.2',
    'org.apache.httpcomponents:httpmime:4.5.2',
    'commons-cli:commons-cli:1.2',
    'ant:ant:1.7.0',
    'com.cloudbees:groovy-cps:1.19',
    'org.codehaus.gpars:gpars:1.2.1'
    )

    testCompile(
    'junit:junit:4.12',
    'org.codehaus.groovy:groovy-all:2.4.14',
    'org.spockframework:spock-core:1.1-groovy-2.4',
    'org.mockito:mockito-core:2.12.0',
    'com.athaydes:spock-reports:1.4.0',
    'org.slf4j:slf4j-api:1.7.13',
    'org.slf4j:slf4j-simple:1.7.13',
    'com.lesfurets:jenkins-pipeline-unit:1.0',
    'org.ccil.cowan.tagsoup:1.2.1'
    )

    varsCompile sourceSets.main.output

    }


    But I get the following error in my jenkins build while building this project



    • What went wrong:
      Could not resolve all files for configuration ':testCompileClasspath'.


      Could not find org.ccil.cowan.tagsoup:0.9.7:.
      Required by:
      project :




    What am I missing?










    share|improve this question
























      0












      0








      0








      I want tagsoup jar as dependency for one of my test case which reads a html.



      In my build.gradle I have done these changes



      asciidoctorj 
      version = '1.5.4'


      repositories
      maven
      url "http://mvn-nexus.my.company:8081/nexus/content/groups/public/"

      mavenCentral()

      compile(
      'org.codehaus.groovy:groovy-all:2.4.14',
      'org.codehaus.groovy.modules.http-builder:http-builder:0.7',
      'org.apache.httpcomponents:httpclient:4.5.2',
      'org.apache.httpcomponents:httpmime:4.5.2',
      'commons-cli:commons-cli:1.2',
      'ant:ant:1.7.0',
      'com.cloudbees:groovy-cps:1.19',
      'org.codehaus.gpars:gpars:1.2.1'
      )

      testCompile(
      'junit:junit:4.12',
      'org.codehaus.groovy:groovy-all:2.4.14',
      'org.spockframework:spock-core:1.1-groovy-2.4',
      'org.mockito:mockito-core:2.12.0',
      'com.athaydes:spock-reports:1.4.0',
      'org.slf4j:slf4j-api:1.7.13',
      'org.slf4j:slf4j-simple:1.7.13',
      'com.lesfurets:jenkins-pipeline-unit:1.0',
      'org.ccil.cowan.tagsoup:1.2.1'
      )

      varsCompile sourceSets.main.output

      }


      But I get the following error in my jenkins build while building this project



      • What went wrong:
        Could not resolve all files for configuration ':testCompileClasspath'.


        Could not find org.ccil.cowan.tagsoup:0.9.7:.
        Required by:
        project :




      What am I missing?










      share|improve this question














      I want tagsoup jar as dependency for one of my test case which reads a html.



      In my build.gradle I have done these changes



      asciidoctorj 
      version = '1.5.4'


      repositories
      maven
      url "http://mvn-nexus.my.company:8081/nexus/content/groups/public/"

      mavenCentral()

      compile(
      'org.codehaus.groovy:groovy-all:2.4.14',
      'org.codehaus.groovy.modules.http-builder:http-builder:0.7',
      'org.apache.httpcomponents:httpclient:4.5.2',
      'org.apache.httpcomponents:httpmime:4.5.2',
      'commons-cli:commons-cli:1.2',
      'ant:ant:1.7.0',
      'com.cloudbees:groovy-cps:1.19',
      'org.codehaus.gpars:gpars:1.2.1'
      )

      testCompile(
      'junit:junit:4.12',
      'org.codehaus.groovy:groovy-all:2.4.14',
      'org.spockframework:spock-core:1.1-groovy-2.4',
      'org.mockito:mockito-core:2.12.0',
      'com.athaydes:spock-reports:1.4.0',
      'org.slf4j:slf4j-api:1.7.13',
      'org.slf4j:slf4j-simple:1.7.13',
      'com.lesfurets:jenkins-pipeline-unit:1.0',
      'org.ccil.cowan.tagsoup:1.2.1'
      )

      varsCompile sourceSets.main.output

      }


      But I get the following error in my jenkins build while building this project



      • What went wrong:
        Could not resolve all files for configuration ':testCompileClasspath'.


        Could not find org.ccil.cowan.tagsoup:0.9.7:.
        Required by:
        project :




      What am I missing?







      jenkins gradle build.gradle






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 7 at 12:51









      user3540481user3540481

      9919




      9919






















          1 Answer
          1






          active

          oldest

          votes


















          1














          You miss the artefact name. Try :



          'org.ccil.cowan.tagsoup:tagsoup:1.2.1'





          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55044232%2fcould-not-resolve-all-files-for-configuration-gradle-build%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            You miss the artefact name. Try :



            'org.ccil.cowan.tagsoup:tagsoup:1.2.1'





            share|improve this answer



























              1














              You miss the artefact name. Try :



              'org.ccil.cowan.tagsoup:tagsoup:1.2.1'





              share|improve this answer

























                1












                1








                1







                You miss the artefact name. Try :



                'org.ccil.cowan.tagsoup:tagsoup:1.2.1'





                share|improve this answer













                You miss the artefact name. Try :



                'org.ccil.cowan.tagsoup:tagsoup:1.2.1'






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 7 at 13:42









                ToYonosToYonos

                11.9k22849




                11.9k22849





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55044232%2fcould-not-resolve-all-files-for-configuration-gradle-build%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

                    Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

                    Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved