forked from freudi74/gradle-cmake-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (30 loc) · 835 Bytes
/
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
plugins {
id "com.gradle.plugin-publish" version "1.1.0"
id "java"
}
group = "dev.welbyseely"
version = "0.1.0"
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testImplementation 'junit:junit:4.13.2'
}
gradlePlugin {
website = 'https://github.com/crimsonmagick/gradle-cmake-plugin'
vcsUrl = 'https://github.com/crimsonmagick/gradle-cmake-plugin'
plugins {
cmakePlugin {
id = 'dev.welbyseely.gradle-cmake-plugin'
displayName = 'Gradle CMake plugin'
description = 'Plugin to seamlessly integrate Cmake with Gradle'
tags.set(['cmake', 'c++'])
implementationClass = 'dev.welbyseely.CMakePlugin'
}
}
}