The command line is too long Standard error from the DataNucleus tool

前端 未结 2 1329
一个人的身影
一个人的身影 2020-12-19 16:15

I am getting this error

The command line is too long.

mvn install

Standard error from the DataNucleus tool  org.datanucleus.enhancer.DataNucleusEnhancer 
         


        
2条回答
  •  粉色の甜心
    2020-12-19 16:56

    If you is using datanucleus-maven-plugin in windows simply set fork property as false in configuration of plugin as follow:

     
      ...
        
            org.datanucleus
            datanucleus-maven-plugin
            3.3.0-release
            
                true
                false   
            
        
      ...
      
    

    See the datanucleus enhancer page for more datails.

提交回复
热议问题