Error Locating Assembly Descriptor When Doing Maven InstallError reading assemblies: No assembly descriptors foundHow to solve “Plugin execution not covered by lifecycle configuration” for Spring Data Maven BuildsMaven Assembly is not workingPacking one tar created using maven assembly into another tar using maven assemblyMaven: how to use POM elements from within assembly descriptormaven-assembly-plugin: do not trigger search of default assembly descriptorHow to create assemble with multi-module project in mavenError reading assemblies in Maven buildingError creating assembly archive in multi module maven projectmaven assembly make <source> optional
Why isn't "I've" a proper response?
Is it possible to perform a regression where you have an unknown / unknowable feature variable?
antonym of "billable"
Can you pop_back a vector and still use the iterator to the last element?
find the path of a data extension for a SQL Query
Architectural feasibility of a tiered circular stone keep
Why in most German places is the church the tallest building?
Why is my Earth simulation slower than the reality?
Why do gliders have bungee cords in the control systems and what do they do? Are they on all control surfaces? What about ultralights?
How to find multiple values on the same line in any permutation using Notepad++?
If all stars rotate, why was there a theory developed that requires non-rotating stars?
If the first law of thermodynamics ensures conservation of energy, why does it allow systems to lose energy?
How to prevent clipped screen edges on my TV, HDMI-connected?
Is for(( ... )) ... ; a valid shell syntax? In which shells?
Does travel insurance for short flight delays exist?
Ensuring all network services on a device use strong TLS cipher suites
I don't have the theoretical background in my PhD topic. I can't justify getting the degree
What to say to a student who has failed?
How to respectfully refuse to assist co-workers with IT issues?
Why did MS-DOS applications built using Turbo Pascal fail to start with a division by zero error on faster systems?
Why did Khan ask Admiral James T. Kirk about Project Genesis?
Are the players on the same team as the DM?
Is "The life is beautiful" incorrect or just very non-idiomatic?
What is the difference between "Grippe" and "Männergrippe"?
Error Locating Assembly Descriptor When Doing Maven Install
Error reading assemblies: No assembly descriptors foundHow to solve “Plugin execution not covered by lifecycle configuration” for Spring Data Maven BuildsMaven Assembly is not workingPacking one tar created using maven assembly into another tar using maven assemblyMaven: how to use POM elements from within assembly descriptormaven-assembly-plugin: do not trigger search of default assembly descriptorHow to create assemble with multi-module project in mavenError reading assemblies in Maven buildingError creating assembly archive in multi module maven projectmaven assembly make <source> optional
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
So, I looked for an answer to this issue on here, but some of the answers I found seemed a bit dated or didn't use the exact same wording with the error message. I was just curious if anyone has run into this issue recently where you try to do a mvn clean install -DskipTests=true
, but you get a build failure stating:
Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:3.1.0:single (default) on project this-project: Error reading assemblies: Error locating assembly descriptor: src/main/assembly/assembly.xml
I've tried looking at the fie locations it says it is trying to look for the file:
U:gitProject_Folderthis-projectsrcmain assemblyassembly.xml
U:gitProject_Folder srcmainassemblyassembly.xml
and sure enough the highlighted portions of those locations do not exist.
I assume based on what I've read online I should create that assembly.xml file and maybe edit the pom.xml file. However, I'm not sure which of those locations to add the assembly.xml file to and what goes in it (and what else I may need to do to get past this error)?
java maven build maven-assembly-plugin
add a comment |
So, I looked for an answer to this issue on here, but some of the answers I found seemed a bit dated or didn't use the exact same wording with the error message. I was just curious if anyone has run into this issue recently where you try to do a mvn clean install -DskipTests=true
, but you get a build failure stating:
Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:3.1.0:single (default) on project this-project: Error reading assemblies: Error locating assembly descriptor: src/main/assembly/assembly.xml
I've tried looking at the fie locations it says it is trying to look for the file:
U:gitProject_Folderthis-projectsrcmain assemblyassembly.xml
U:gitProject_Folder srcmainassemblyassembly.xml
and sure enough the highlighted portions of those locations do not exist.
I assume based on what I've read online I should create that assembly.xml file and maybe edit the pom.xml file. However, I'm not sure which of those locations to add the assembly.xml file to and what goes in it (and what else I may need to do to get past this error)?
java maven build maven-assembly-plugin
please show your pom file including the configuration of maven-assembly-plugin...
– khmarbaise
Mar 27 at 18:39
add a comment |
So, I looked for an answer to this issue on here, but some of the answers I found seemed a bit dated or didn't use the exact same wording with the error message. I was just curious if anyone has run into this issue recently where you try to do a mvn clean install -DskipTests=true
, but you get a build failure stating:
Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:3.1.0:single (default) on project this-project: Error reading assemblies: Error locating assembly descriptor: src/main/assembly/assembly.xml
I've tried looking at the fie locations it says it is trying to look for the file:
U:gitProject_Folderthis-projectsrcmain assemblyassembly.xml
U:gitProject_Folder srcmainassemblyassembly.xml
and sure enough the highlighted portions of those locations do not exist.
I assume based on what I've read online I should create that assembly.xml file and maybe edit the pom.xml file. However, I'm not sure which of those locations to add the assembly.xml file to and what goes in it (and what else I may need to do to get past this error)?
java maven build maven-assembly-plugin
So, I looked for an answer to this issue on here, but some of the answers I found seemed a bit dated or didn't use the exact same wording with the error message. I was just curious if anyone has run into this issue recently where you try to do a mvn clean install -DskipTests=true
, but you get a build failure stating:
Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:3.1.0:single (default) on project this-project: Error reading assemblies: Error locating assembly descriptor: src/main/assembly/assembly.xml
I've tried looking at the fie locations it says it is trying to look for the file:
U:gitProject_Folderthis-projectsrcmain assemblyassembly.xml
U:gitProject_Folder srcmainassemblyassembly.xml
and sure enough the highlighted portions of those locations do not exist.
I assume based on what I've read online I should create that assembly.xml file and maybe edit the pom.xml file. However, I'm not sure which of those locations to add the assembly.xml file to and what goes in it (and what else I may need to do to get past this error)?
java maven build maven-assembly-plugin
java maven build maven-assembly-plugin
edited Mar 27 at 17:46
Jester
47.9k4 gold badges51 silver badges89 bronze badges
47.9k4 gold badges51 silver badges89 bronze badges
asked Mar 27 at 17:38
Pr0pagatePr0pagate
525 bronze badges
525 bronze badges
please show your pom file including the configuration of maven-assembly-plugin...
– khmarbaise
Mar 27 at 18:39
add a comment |
please show your pom file including the configuration of maven-assembly-plugin...
– khmarbaise
Mar 27 at 18:39
please show your pom file including the configuration of maven-assembly-plugin...
– khmarbaise
Mar 27 at 18:39
please show your pom file including the configuration of maven-assembly-plugin...
– khmarbaise
Mar 27 at 18:39
add a comment |
0
active
oldest
votes
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%2f55383434%2ferror-locating-assembly-descriptor-when-doing-maven-install%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
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%2f55383434%2ferror-locating-assembly-descriptor-when-doing-maven-install%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
please show your pom file including the configuration of maven-assembly-plugin...
– khmarbaise
Mar 27 at 18:39