在用eclipse把一个做好的spring-boot项目进行打包时,报错了,报错如下

其实很明显,这个错误主要是在打包过程中,boot项目会有main方法,但是报错的原因就是我有好几个main方法,他不知道那个用来充当入口。
具体报错如下:
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.2.3.RELEASE:repackage (default) on project serviceone: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.2.3.RELEASE:repackage failed: Unable to find a single main class from the following candidates [com.hcycom.ssacc, com.hcycom.ssaccOne, com.hcycom.util.PropertiesUtil, com.hcycom.util.RandomUtil, com.hcycom.util.cs] -> [Help 1]
但是我查看了工程目录,将其它的main方法的类都进行了修改,再次打包后,发现还是这个错误。
我的思路有两个,是不是可以在打包前设置好固定的入口含有main的java类,或者是boot内置的依赖有缓存,没修改完的东西并没有很好的更新。
求助求助!!!