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.
我正在从 Maven3 迁移到 Gradle,并且我依赖于一个包含一些属性作为版本标识符的内部项目。当我尝试编译我的项目时,它抱怨找不到依赖项。问题是这些属性要么使用句点“。” 或破折号“-”(例如,cargo.version、supported-spring-version)。
Groovy 中有没有办法声明一个带有奇数字符的变量?
def '支持的弹簧版本' = '3.1.0.RELEASE'
不能使用 def,但可以在当前绑定中声明它们
this.'some-string' = '3' println this.'some-string'
虽然可能有更好的解决方法,但是您的问题中没有足够的信息来可靠地提出替代方案