作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是建议的 Gradle 构建 here用于使用 Play Web 框架。
plugins {
id 'play'
id 'idea'
}
repositories {
jcenter()
maven {
name "typesafe-maven-release"
url "https://repo.typesafe.com/typesafe/maven-releases"
}
ivy {
name "typesafe-ivy-release"
url "https://repo.typesafe.com/typesafe/ivy-releases"
layout "ivy"
}
}
它在从命令行构建、启动等时工作正常,但是一旦将项目导入intellij(使用gradle idea
生成的idea的项目文件),依赖项(来自play插件)就不会了不会显示在项目 View /外部库中(即使在 gradle 面板中点击“刷新所有 gradle 项目”之后)。
谢谢:)
PS:intellij 15.0.2/gradle 2.6/play plugin
最佳答案
已找到答案 here 。显然,需要明确告诉 gradle idea 插件如何连接依赖项。
总结一下:
gradle idea
生成idea的项目文件在intellij中打开项目
plugins {
id 'play'
id 'idea'
}
repositories {
jcenter()
maven {
name "typesafe-maven-release"
url "https://repo.typesafe.com/typesafe/maven-releases"
}
ivy {
name "typesafe-ivy-release"
url "https://repo.typesafe.com/typesafe/ivy-releases"
layout "ivy"
}
}
idea {
module {
sourceDirs += file("app")
testSourceDirs += file("test")
scopes.COMPILE = [plus: [configurations.play], minus: []]
scopes.RUNTIME = [plus: [configurations.playRun], minus:[configurations.play]]
scopes.TEST = [plus: [configurations.playTest], minus: [configurations.playRun]]
}
}
PS:使用 intellij 15.0.2/gradle 2.10/gradle play 插件进行测试
关于scala - 如何让 gradle/intellij/play 框架协同工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34463264/
我想插入 备注 关于要在我的 latex 文档的特定位置进行的修复 也许有一个 列表的“待办事项/修复我” 你怎么处理这个? 似乎一种方法是使用 fixme 包,但我无法使其工作。 有人在用吗? 最佳
错误:无法创建表。我已经创建了一个数据库,并且已经提供了所有特权。但仍然无法登录协作模块。我受够了,但我不想放弃。我已经尝试了所有可能的方法,但都行不通。 Stackoverflow 是我所知道的最好
我是一名优秀的程序员,十分优秀!