Why doesn't NetBeans IDE see the generated sources?

后端 未结 6 2183
离开以前
离开以前 2021-02-07 02:55

I have a Maven-built web-app that uses JPA 2.0 at the back end. The JPA provider is EclipseLink 2.3.2.

When I build the project (and it deploys runs successfully) it bu

6条回答
  •  执念已碎
    2021-02-07 03:22

    For me it worked after I added ${project.build.directory}/endorsed to the of the pom.xml, e.g.:

    
        1.8
        1.8
        ${project.build.directory}/endorsed
        UTF-8
        8.0
    
    

    But I have no explanation why.

提交回复
热议问题