forked from browserup/browserup-proxy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
62 lines (54 loc) · 1.56 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
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven-publish'
group = 'com.github.valfirst.browserup-proxy'
version = '3.1.2-SNAPSHOT'
sourceCompatibility=11
ext {
bcpVersion = '1.80'
guiceVersion = '6.0.0'
jacksonVersion = '2.18.2'
jerseyVersion = '2.46'
jettyVersion = '9.4.57.v20241219'
log4jVersion = '2.24.3'
nettyVersion = '4.1.117.Final'
littleProxyVersion = '2.4.0'
slf4jVersion = '2.0.16'
swaggerVersion = '2.2.26'
guavaVersion = '33.4.0-jre'
seleniumVersion = '4.28.1'
hamcrestVersion = '3.0'
}
dependencies {
modules {
module('commons-logging:commons-logging') {
replacedBy('org.slf4j:jcl-over-slf4j', 'Redirect commons-logging logs to SLF4J')
}
}
}
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/service/local/staging/deploy/maven2/" }
}
java {
withJavadocJar()
withSourcesJar()
}
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
test {
testLogging {
outputs.upToDateWhen {false}
showStandardStreams = true
}
def mitmproxyBinaryPath = project.findProperty('MITMPROXY_BINARY_PATH')
if (mitmproxyBinaryPath) {
systemProperty "MITMPROXY_BINARY_PATH", mitmproxyBinaryPath
}
}
}