Spring Cloud Pipelines 1.0.0.M2 版本发布

发布 | Marcin Grzejszczak | 2016年10月26日 | ...

代表 Spring Cloud 团队,我很高兴地宣布 Spring Cloud Pipelines 的一个新的里程碑版本 - 1.0.0.M2。除了修复一些 bug 之外,它还提供了对 Gradle 项目的开箱即用支持。

为了使 Gradle 项目能够开箱即用,我们做出了以下一些约定:

  • 使用 Gradlew Wrapper

  • 使用自定义的 deploy 任务进行构件部署

  • 通过自定义的 smoke 任务对部署的应用运行冒烟测试

  • 通过自定义的 e2e 任务对部署的应用运行端到端测试

  • 自定义 groupId 任务来获取 group id

  • 自定义 artifactId 任务来获取 artifact id

  • 自定义 currentVersion 任务来获取当前版本

  • 自定义 stubIds 任务来获取应该下载存根的协作者列表

这些任务的示例实现可以在这里找到。我们在下面粘贴其内容。

test {
    description = "Task to run unit and integration tests"
    testLogging {
        exceptionFormat = 'full'
    }
    jvmArgs = systemPropsFromGradle()
    exclude 'smoke/**'
    exclude 'e2e/**'
}

task smoke(type: Test) {
    description = "Task to run smoke tests"
    testLogging {
        exceptionFormat = 'full'
    }
    jvmArgs = systemPropsFromGradle()
    include 'smoke/**'
}

task e2e(type: Test) {
    description = "Task to run end to end tests"
    testLogging {
        exceptionFormat = 'full'
    }
    jvmArgs = systemPropsFromGradle()
    include 'e2e/**'
}

task deploy(dependsOn: 'publish') {
    description = "Abstraction over publishing artifacts to Artifactory / Nexus"
}

task groupId << {
    println projectGroupId
}
groupId.description = "Task to retrieve Group ID"

task artifactId << {
    println projectArtifactId
}
artifactId.description = "Task to retrieve Artifact ID"

task currentVersion << {
    println projectVersion
}
currentVersion.description = "Task to retrieve version"

task stubIds << {
    println stubrunnerIds
}
stubIds.description = "Task to retrieve Stub Runner IDS"

[test, smoke, e2e, deploy, groupId, artifactId, currentVersion, stubIds].each {
    it.group = "Pipeline"
}

private List<String> systemPropsFromGradle() {
    return project.gradle.startParameter.systemPropertiesArgs.entrySet().collect { "-D${it.key}=${it.value}" }
}

与大多数 Spring 项目不同,此项目不在任何代码仓库中可用,因为它不是一个库,而是一个 GitHub 仓库,您可以将其下载并用作创建部署管道的模板。

请查看以下任何链接以获取更多信息或联系我们:

获取 Spring 新闻通讯

通过 Spring 新闻通讯保持联系

订阅

领先一步

VMware 提供培训和认证,以加速您的进步。

了解更多

获取支持

Tanzu Spring在一个简单的订阅中提供对OpenJDK™、Spring和Apache Tomcat®的支持和二进制文件。

了解更多

即将举行的活动

查看 Spring 社区中所有即将举行的活动。

查看全部