创建新的springboo项目demoStarter
配置pom文件,保证当前starter发布到maven仓库,方便其它项目引入该starter时候直接调用其中的工具类
创建一个demo类
在其它项目中引入自定义依赖### 配置发布的插件
<build>
<plugins>
<!--这个不能用springboot项目默认的,不然install报错-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</build>