Conflicting versions of datanucleus enhancer in a maven google app engine project

后端 未结 6 573
南方客
南方客 2020-12-09 09:54

I\'m having a problem setting up datanucleus enhancer to use with a google app engine project. If I use the datanucleus eclipse plugin everything goes well, but in my maven

6条回答
  •  不知归路
    2020-12-09 10:34

    After reading "How to override a plugin's dependency in Maven", I found another way to fix this. Here is my POM:

    
      org.datanucleus
      maven-datanucleus-plugin
      3.1.0-m3
      
        true
      
    
      
        
          process-classes
          
            enhance
          
        
      
    
      
        
          org.datanucleus
          datanucleus-core
          3.0.4
        
      
    
    

提交回复
热议问题