Skip to content

Commit 31bc4fb

Browse files
Merge pull request #1 from IBA-mainframe-dev/switch_to_EPL_license
Switch to epl license
2 parents acbcdce + b526360 commit 31bc4fb

20 files changed

+467
-201
lines changed

Jenkinsfile

+10
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
buildPluginWithGradle(useContainerAgent: true, tests: [[skip: 'true']], configurations: [[platform: 'linux', jdk: '11']])

LICENSE

+277-201
Large diffs are not rendered by default.

build.gradle.kts

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
212

313
val kotlinVersion = findProperty("kotlinVersion")

settings.gradle.kts

+10
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
rootProject.name = "zos-devops"

src/main/kotlin/io/jenkins/plugins/zdevops/classic/AbstractBuildStep.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.classic
212

313
import eu.ibagroup.r2z.zowe.client.sdk.core.ZOSConnection

src/main/kotlin/io/jenkins/plugins/zdevops/classic/steps/SubmitJobStep.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.classic.steps
212

313
import eu.ibagroup.r2z.zowe.client.sdk.zosjobs.SubmitJobs

src/main/kotlin/io/jenkins/plugins/zdevops/config/ZOSConnection.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.config;
212

313
import com.cloudbees.plugins.credentials.common.StandardCredentials

src/main/kotlin/io/jenkins/plugins/zdevops/config/ZOSConnectionList.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.config;
212

313
import com.cloudbees.plugins.credentials.CredentialsProvider

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/AbstractZosmfAction.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative
212

313
import eu.ibagroup.r2z.zowe.client.sdk.core.ZOSConnection

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/ZosmfExecution.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative
212

313
import hudson.FilePath

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/ZosmfStepDeclarative.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative
212

313
import hudson.EnvVars

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/jobs/AllocateDatasetDeclarative.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative.jobs
212

313
import eu.ibagroup.r2z.*

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/jobs/DownloadFileDeclarative.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative.jobs
212

313
import eu.ibagroup.r2z.DatasetOrganization

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/jobs/SubmitJobStepDeclarative.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative.jobs
212

313
import eu.ibagroup.r2z.zowe.client.sdk.core.ZOSConnection

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/jobs/SubmitJobSyncStepDeclarative.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative.jobs
212

313
import eu.ibagroup.r2z.zowe.client.sdk.core.ZOSConnection

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/jobs/WriteFIleToMemberDeclarative.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative.jobs
212

313
import eu.ibagroup.r2z.zowe.client.sdk.core.ZOSConnection

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/jobs/WriteFileToDatasetDeclarative.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative.jobs
212

313
import eu.ibagroup.r2z.zowe.client.sdk.core.ZOSConnection

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/jobs/WriteToDatasetDeclarative.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative.jobs
212

313
import eu.ibagroup.r2z.zowe.client.sdk.core.ZOSConnection

src/main/kotlin/io/jenkins/plugins/zdevops/declarative/jobs/WriteToMemberDeclarative.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.declarative.jobs
212

313
import eu.ibagroup.r2z.zowe.client.sdk.core.ZOSConnection

src/main/kotlin/io/jenkins/plugins/zdevops/model/ResolvedZOSConnection.kt

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright IBA Group 2022
9+
*/
10+
111
package io.jenkins.plugins.zdevops.model
212

313
import java.io.Serializable

0 commit comments

Comments
 (0)