我必须将SBT应用程序转换为Maven应用程序 首先,我需要包含这些插件
// Typesafe存储库 解析器+ =“ Typesafe存储库”,位于>“ https://repo.typesafe.com/typesafe/maven-releases/”
///将Play sbt插件用于Play项目 addSbtPlugin(“ com.typesafe.play”%“ sbt-plugin”%“ 2.6.18”)
//保持同类代码样式 addSbtPlugin(“ com.geirsson”%“ sbt-scalafmt”%“ 1.5.1”)
///将构建信息添加到代码中 addSbtPlugin(“ com.eed3si9n”%“ sbt-buildinfo”%“ 0.7.0”)
//用于管理发布周期的插件 addSbtPlugin(“ com.github.gseitz”%“ sbt-release”%“ 1.0.9”)
//打包应用程序的插件 addSbtPlugin(“ com.eed3si9n”%“ sbt-assembly”%“ 0.14.7”)
///对前端资产进行指纹识别,以避免在发布后缓存浏览器>(仅在生产模式下) addSbtPlugin(“ com.typesafe.sbt”%“ sbt-digest”%“ 1.1.4”)
但是maven无法通过配置解决它们
<plugin>
<groupId>com.geirsson</groupId>
<artifactId>sbt-scalafmt</artifactId>
<version>1.5.1</version>
</plugin>
例如第二个。
能帮我吗?