protected void preparePaths( Set<File> sourceFiles ) { //assert compilePath != null; File moduleDescriptorPath = null; boolean hasModuleDescriptor = false; for ( File sourceFile : sourceFiles ) { if ( "module-info.java".equals( sourceFile.getName() ) ) { moduleDescriptorPath = sourceFile; hasModuleDescriptor = true; break; }} 这篇关于将Maven项目迁移到模块-忽略module-info.java的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-16 15:12