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
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
add a comment |
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
add a comment |
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
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
jenkins gradle build.gradle
asked Mar 7 at 12:51
user3540481user3540481
9919
9919
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You miss the artefact name. Try :
'org.ccil.cowan.tagsoup:tagsoup:1.2.1'
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
You miss the artefact name. Try :
'org.ccil.cowan.tagsoup:tagsoup:1.2.1'
add a comment |
You miss the artefact name. Try :
'org.ccil.cowan.tagsoup:tagsoup:1.2.1'
add a comment |
You miss the artefact name. Try :
'org.ccil.cowan.tagsoup:tagsoup:1.2.1'
You miss the artefact name. Try :
'org.ccil.cowan.tagsoup:tagsoup:1.2.1'
answered Mar 7 at 13:42
ToYonosToYonos
11.9k22849
11.9k22849
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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