Skip to content

Commit

Permalink
build.properties needs to be add while generating EAR for CXf
Browse files Browse the repository at this point in the history
  • Loading branch information
SujataDarekar committed Jan 5, 2022
1 parent 9177c4e commit b3d6138
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,15 @@ protected FileSet getFileSet(File basedir, List<String> includes, List<String> e
includes.add(".project");
}

if(!includes.contains("pom.xml"))
{ includes.add("pom.xml"); }
if(!includes.contains("pom.xml"))
{
includes.add("pom.xml");
}

if(!includes.contains("build.properties"))
{
includes.add("build.properties");
}

}

Expand Down

0 comments on commit b3d6138

Please sign in to comment.