Common problem for all maven users.
Configuration is not valid '/home/roharme/Addition/addition/mda/src/main/config/andromda.xml
If you are using Linux such as UBUNTU, this problem is common. In windows, this never happens as windows follows drive letter format. So the location of file is always definite.But in ubuntu, there is no drive letter. It follows the hierarchy of home -> [user] folder structure.This convention appears ambiguous to maven while replacing the location string in pom.xml file. The solution for the problem is
1. Locate the file [project]/mda/pom.xml
2. Open the pom.xml file
3. Find the line
4. Replace the string
5. Save the file.
6. Now proceed with mvn install. It should work fine.
Infected with Harish Syndrome
Configuration is not valid '/home/roharme/Addition/addition/mda/src/main/config/andromda.xml
If you are using Linux such as UBUNTU, this problem is common. In windows, this never happens as windows follows drive letter format. So the location of file is always definite.But in ubuntu, there is no drive letter. It follows the hierarchy of home -> [user] folder structure.This convention appears ambiguous to maven while replacing the location string in pom.xml file. The solution for the problem is
1. Locate the file [project]/mda/pom.xml
2. Open the pom.xml file
3. Find the line
|
4. Replace the string
${project.build.sourceDirectory}
by |
5. Save the file.
6. Now proceed with mvn install. It should work fine.
Infected with Harish Syndrome
Comments