forked from jfrog/jfrog-idea-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (52 loc) · 1.31 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
buildscript {
repositories {
jcenter()
}
}
plugins {
id "org.jetbrains.intellij" version "0.4.15"
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
intellij {
version 'IU-2019.3.3'
plugins 'gradle', 'maven', 'Groovy', 'properties', 'java', 'org.jetbrains.plugins.go:193.5662.53.103'
pluginName 'JFrog'
updateSinceUntilBuild = false
}
repositories {
mavenLocal()
maven {
url "https://oss.jfrog.org/artifactory/libs-snapshot"
mavenContent {
snapshotsOnly()
}
}
maven {
url "http://oss.jfrog.org/artifactory/libs-release"
}
}
dependencies {
implementation group: 'com.jfrog.ide', name: 'ide-plugins-common', version: '1.2.x-SNAPSHOT'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
}
test {
testLogging {
exceptionFormat "full"
events "started", "passed", "skipped", "failed", "standardOut", "standardError"
minGranularity 0
}
if (project.hasProperty('excludeTests')) {
exclude project.property('excludeTests')
}
}
jar {
manifest {
attributes 'Implementation-Version': currentVersion
}
}
group 'com.jfrog.ide'
version currentVersion // Plugin version