forked from LambdaTest/jenkins-plugin
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
165 lines (127 loc) · 5.8 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* user guide available at https://docs.gradle.org/4.7/userguide/java_library_plugin.html
*/
buildscript {
repositories {
maven {
name "jenkins"
delegate.url("https://repo.jenkins-ci.org/releases/")
}
// The plugin is currently only available via the Jenkins
// Maven repository, but has dependencies in Maven Central.
mavenCentral()
}
dependencies {
classpath 'org.jenkins-ci.tools:gradle-jpi-plugin:0.28.1'
}
}
plugins {
// Apply the java-library plugin to add support for Java Library
id 'java'
id 'java-library'
id 'org.jenkins-ci.jpi' version '0.44.0'
id 'net.researchgate.release' version '2.6.0'
}
group = 'org.jenkins-ci.plugins'
version = '1.21.4'
description = 'LambdaTest Plugin is used to run automated selenium tests on LambdaTest Cloud'
sourceCompatibility = 1.8
targetCompatibility = 1.8
jenkinsPlugin {
// version of Jenkins core this plugin depends on, must be 1.420 or later
coreVersion = '2.120'
// ID of the plugin, defaults to the project name without trailing '-plugin'
shortName = 'lambdatest-automation'
// human-readable name of plugin
displayName = 'LambdaTest Automation Plugin'
// human-readable name of plugin
//name = 'LambdaTest Automation Plugin'
// use the plugin class loader before the core class loader, defaults to false
pluginFirstClassLoader = true
// optional list of package prefixes that your plugin doesn't want to see from core
maskClasses = 'groovy.grape org.apache.commons.codec'
// optional version number from which this plugin release is configuration-compatible
compatibleSinceVersion = '1.1.0'
// set the directory from which the development server will run, defaults to 'work'
workDir = file('/tmp/jenkins')
// URL used to deploy the plugin, defaults to the value shown
// the system property 'jpi.repoUrl' can be used to override this option
repoUrl = 'https://repo.jenkins-ci.org/releases'
gitHubUrl = 'https://github.com/jenkinsci/lambdatest-automation-plugin'
// URL used to deploy snapshots of the plugin, defaults to the value shown
// the system property 'jpi.snapshotRepoUrl' can be used to override this option
snapshotRepoUrl = 'https://repo.jenkins-ci.org/snapshots'
// enable injection of additional tests for checking the syntax of Jelly and other things
disabledTestInjection = false
// the output directory for the localizer task relative to the project root, defaults to the value shown
localizerOutputDir = "${project.buildDir}/generated-src/localizer"
// disable configuration of Maven Central, the local Maven cache and the Jenkins Maven repository, defaults to true
configureRepositories = false
// skip configuration of publications and repositories for the Maven Publishing plugin, defaults to true
configurePublishing = false
// plugin file extension, either 'jpi' or 'hpi', defaults to 'hpi'
fileExtension = 'hpi'
// the licenses section is optional, and corresponds to the POM licenses section
licenses {
license {
name 'Mozilla Public License 2.0'
url 'https://www.mozilla.org/en-US/MPL/2.0/'
distribution 'repo'
comments 'A business-friendly OSS license'
}
}
}
tasks.named('generatedJenkinsTest').configure {
enabled = false
}
test {
ignoreFailures = true
}
dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
api 'org.apache.commons:commons-math3:3.6.1'
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:23.0'
implementation 'org.antlr:antlr4:4.2'
implementation 'org.jenkins-ci.plugins.workflow:workflow-step-api:639.v6eca_cd8c04a_a_'
implementation 'org.jenkins-ci.plugins:matrix-project:1.4'
implementation 'org.jenkinsci.plugins:git:1.1.25'
implementation 'org.jenkins-ci.plugins:credentials:2.1.10'
optionalJenkinsPlugins 'org.jenkins-ci.plugins:ant:1.2'
//jenkinsTest 'org.jenkins-ci.main:maven-plugin:2.17'
jenkinsServer 'org.jenkins-ci.plugins:ant:1.2'
implementation group: 'org.jenkins-ci.plugins', name: 'structs', version:'1.7'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.7'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.7'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.6'
implementation group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.4.10'
// https://mvnrepository.com/artifact/org.json/json
implementation group: 'org.json', name: 'json', version: '20230227'
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}
// In this section you declare where to find the dependencies of your project
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
maven { url "https://repo.jenkins-ci.org/public/" }
maven { url "https://repo.maven.apache.org/maven2" }
maven { url "https://repo.spring.io/plugins-release/" }
mavenCentral()
}
release {
failOnSnapshotDependencies = false
failOnUnversionedFiles = false
buildTasks = ['build']
scmAdapters = [net.researchgate.release.GitAdapter]
git {
requireBranch = 'master'
pushToRemote = 'origin'
commitVersionFileOnly = false
signTag = false
}
}