SBT依赖于AutoPlugin

时间:2016-12-22 12:23:59

标签: sbt

为什么我install_github它不会打印sbt compile

Hello
// build.sbt
enablePlugins(Hello)

干杯

1 个答案:

答案 0 :(得分:0)

以下是https://stackoverflow.com/users/463761/dale-wijnand的回答:

  

问题是你在Compile中定义编译然后得到   由JvmPlugin撰写。
  做你想做的事你需要做你的   AutoPlugin需要JvmPlugin:

People service = new People.Builder( HTTP_TRANSPORT, JSON_FACTORY, credential )
                        .setApplicationName( "REST API sample" )
                        .build();
ListConnectionsResponse connectionsResponse = service
                    .people()
                    .connections()
                    .list( "people/me" )
                    .execute();