333
333

Reputation: 158

Maven picking up incorrect resource path

In pom.xml of my java project, I have provided resource path like this,

    <resource>
        <directory>C:/Softwares/apache-tomcat-7.0.82/conf</directory>
    </resource>

When I do mvn install, resource that is getting added is

C:Softwares/apache-tomcat-7.0.82/conf

Because of this, the following issue occurs

Build path entry is missing: C:Softwares/apache-tomcat-7.0.82/conf

I have tried pointing the directory thru environment variable like this,

${env.CATALINA_HOME}/conf

Still the problem exists.

Upvotes: 1

Views: 143

Answers (1)

333
333

Reputation: 158

It was a slash problem. The problem was resolved after I changed the path to

C:\Softwares\apache-tomcat-7.0.82\conf

Upvotes: 1

Related Questions