forked from testvagrant/ekam-drivers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
132 lines (111 loc) · 3.42 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
plugins {
id 'java'
id 'maven-publish'
id 'signing'
id "com.google.cloud.artifactregistry.gradle-plugin" version "2.1.5"
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
dependencies {
// Generic wait
implementation('org.awaitility:awaitility:4.1.0')
//appium
implementation('io.appium:java-client:7.5.1')
//Selenium
implementation('org.seleniumhq.selenium:selenium-java:3.141.59')
implementation('io.github.bonigarcia:webdrivermanager:4.4.3')
implementation('com.microsoft.edge:msedge-selenium-tools-java:3.141.0')
//lombok
implementation('org.projectlombok:lombok:1.18.20')
annotationProcessor('org.projectlombok:lombok:1.18.20')
testImplementation('org.projectlombok:lombok:1.18.20')
testAnnotationProcessor('org.projectlombok:lombok:1.18.20')
// Test Framework
testImplementation('org.junit.jupiter:junit-jupiter-api:5.8.0-M1')
testImplementation('org.junit.jupiter:junit-jupiter-engine:5.8.0-M1')
}
test {
// Use TestNG for unit tests
useJUnitPlatform()
}
task sourceJar(type: Jar) {
classifier "sources"
from sourceSets.main.allJava
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier "javadoc"
from javadoc.destinationDir
}
artifacts {
archives jar
archives sourceJar
archives javadocJar
}
publishing {
publications {
mavenJava(MavenPublication) {
customizePom(pom)
groupId 'dunzoit'
artifactId 'ekam-drivers'
version '1.0.4'
from components.java
artifact(sourceJar) {
classifier = 'sources'
}
artifact(javadocJar) {
classifier = 'javadoc'
}
}
}
repositories {
maven {
url "artifactregistry://asia-south1-maven.pkg.dev/dev-application-294611/maven-qe"
// credentials {
// username System.getenv("sonatypeUsername")
// password System.getenv("sonatypePassword")
// username sonatypeUsername
// password sonatypePassword
// }
}
}
}
def customizePom(pom) {
pom.withXml {
def root = asNode()
// eliminate test-scoped dependencies (no need in maven central POMs)
root.dependencies.removeAll { dep ->
dep.scope == "test"
}
// add all items necessary for maven central publication
root.children().last() + {
resolveStrategy = Closure.DELEGATE_FIRST
description 'Ekam Drivers Project to create web and mobile drivers'
name 'Ekam Drivers'
url 'https://github.com/dunzoit/ekam-drivers'
licenses {
license {
name 'MIT License'
url 'https://github.com/dunzoit/ekam-drivers/-/blob/master/LICENSE'
distribution 'repo'
}
}
scm {
url 'https://github.com/dunzoit/ekam-drivers'
connection 'https://github.com/dunzoit/ekam-drivers.git'
developerConnection 'git@github.com:dunzoit/ekam-drivers.git'
}
developers {
developer {
name 'Central QA'
}
}
}
}
}
model {
tasks.generatePomFileForMavenJavaPublication {
destination = file("$buildDir/generated-pom.xml")
}
}