-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
45 lines (38 loc) · 1.09 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
plugins {
id 'com.gradle.plugin-publish' version '0.12.0'
id 'java-gradle-plugin'
id 'java'
id 'maven-publish'
}
group = 'com.oversecured'
version '1.2'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
google()
jcenter()
}
gradlePlugin {
plugins {
create('OversecuredPlugin') {
id = 'com.oversecured'
implementationClass = 'oversecured.android.gradle.OversecuredPlugin'
}
}
}
dependencies {
implementation 'com.android.tools.build:gradle:4.1.0'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
}
pluginBundle {
website = 'https://oversecured.com/docs/ci-cd/gradle'
vcsUrl = 'https://github.com/oversecured/oversecured-android-gradle'
description = 'Gradle plugin to scan Android apps for vulnerabilities with Oversecured'
tags = ['oversecured', 'qa', 'security', 'mobile', 'android', 'sast', 'analysis']
plugins {
OversecuredPlugin {
displayName = 'Oversecured Extension for Gradle'
}
}
}