Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在我的 gradle 构建中创建许多不同的模式来运行码头。
它们在系统属性和类路径上有所不同。
如何使用 gradle jetty 插件来做到这一点?
您可以创建多个类型的任务JettyRun。要动态创建不同的任务实例,您可以使用 Groovy 语法糖。
JettyRun
4.times { // this can be replaced by iterating over your different environment settings task "jettyRun${it}(type:JettyRun) { // do you custom configuration here } }
bb,雷内