This repository was archived by the owner on Apr 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
60 lines (49 loc) · 1.44 KB
/
build.gradle
File metadata and controls
60 lines (49 loc) · 1.44 KB
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
plugins {
id 'java-gradle-plugin'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id 'com.gradle.plugin-publish' version '0.12.0'
id 'maven-publish'
}
apply plugin: 'java'
apply plugin: 'idea'
gradlePlugin {
plugins {
deploy {
id = 'org.web3j.deploy'
displayName = 'Web3j deployer plugin'
description = 'Gradle Plugin for managing deployments of Ethereum contracts and transactions.'
implementationClass = 'org.web3j.deploy.DeployPlugin'
}
}
}
pluginBundle {
website = 'https://web3j.io/'
vcsUrl = 'https://github.com/web3j/web3j-deployer'
description = 'Gradle plugin for managing deployments of Ethereum contracts and transactions.'
tags = [
'ethereum',
'web3j',
'deployer'
]
}
group 'org.web3j'
version '4.8.8'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/releases/' }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72"
implementation "org.web3j:web3j-deployer:4.8.8"
implementation "io.github.classgraph:classgraph:4.8.129"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}