书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 2517 个相关结果.
  • 构建脚本代码

    构建脚本代码 构建脚本代码 Gradle 的构建脚本展示了 Groovy 的所有能力. 作为开胃菜, 来看看这个: 例子 6.4. 在 Gradle 任务里使用 Groovy build.gradle task upper << { String someString = 'mY_nAmE' print...
  • Kotlin 1.8.0

    Kotlin 1.8.0 的新特性 IDE 支持 Kotlin/JVM 不生成 TYPE_USE 与 TYPE_PARAMETER 注解目标的能力 用于禁用优化的新增编译器选项 删除旧版后端 支持 Lombok 的 @Builder 注解 Kotlin/Native 支持 Xcode 14.1 改进了 Objective-C/Swift 互操作...
  • Building Ktor

    Building Ktor note Downloading the source Building Installing locally Troubleshooting Building Ktor note This help topic is in development and will be updated in the...
  • Kotlin 多平台兼容性指南

    Kotlin 多平台兼容性指南 New approach to auto-generated targets Changes in Gradle input and output compile tasks New configuration names for dependencies on the compilation Deprecated Gr...
  • Updating Your libGDX Version

    Switching libGDX Versions Replacing additional files Update to release 1.9.12 Update to release 1.9.6 Gradle Wrapper and Updating It Gradle Versions Plugin And Updating Your D...
  • 跳过 up-to-date 的任务

    跳过 up-to-date 的任务 1. 声明一个任务的输入和输出 2. 它是如何工作的? 跳过 up-to-date 的任务 如果你正在使用一些附加的任务, 比如通过 Java 插件加入的任务, 你可能会注意到 Gradle 会跳过一些任务, 这些任务后面会标注 up-to-date . 代表这个任务已经运行过了或者说是最新的状态, 不再需要产...
  • 调用 Ant 任务

    调用 Ant 任务 调用 Ant 任务 Ant 任务是 Gradle 的一等公民.Gradle 通过 Groovy 出色的集成了 Ant 任务.Groovy 自带了一个 AntBuilder.相比于从一个 build.xml 文件中使用 Ant 任务,在 Gradle 里使用 Ant 任务更为方便和强大. 从下面的例子中,你可以学习如何执行 Ant ...
  • 59.5 初始化新工程

    59.5 初始化新工程 59.5 初始化新工程 init 命令允许你使用start.spring.io 在不离开shell的情况下创建一个新的项目,例如: $ spring init -- dependencies = web , data - jpa my - project Using service at https : //sta...
  • 选择文件构建

    选择执行构建 选择执行构建 调用 gradle 命令时,默认情况下总是会构建当前目录下的文件, 可以使用 -b 参数选择其他目录的构建文件,并且当你使用此参数时 settings.gradle 将不会生效,看下面的例子: 例 11.5. 选择文件构建 subdir/myproject.gradle task hello << { ...
  • Chapter 6. Build Script Basics 构建脚本的基本

    1199 2018-03-22 《Gradle 3 用户指南》
    Chapter 6. Build Script Basics 构建脚本的基本 6.2. Hello world 命令行加中 -q 的作用 6.3. A shortcut task definition 快捷 task 定义 6.4. Build scripts are code 构建的脚本都是代码 6.5. Task dependencies 依赖...