Skip to content

Commit 146c72a

Browse files
Add implementation - version 0.9.0
0 parents  commit 146c72a

10 files changed

Lines changed: 517 additions & 0 deletions

File tree

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
.gradle
2+
build/
3+
!gradle/wrapper/gradle-wrapper.jar
4+
!**/src/main/**/build/
5+
!**/src/test/**/build/
6+
.idea
7+
*.iws
8+
*.iml
9+
*.ipr
10+
out/
11+
!**/src/main/**/out/
12+
!**/src/test/**/out/
13+
14+
### Eclipse ###
15+
.apt_generated
16+
.classpath
17+
.factorypath
18+
.project
19+
.settings
20+
.springBeans
21+
.sts4-cache
22+
bin/
23+
!**/src/main/**/bin/
24+
!**/src/test/**/bin/
25+
26+
### NetBeans ###
27+
/nbproject/private/
28+
/nbbuild/
29+
/dist/
30+
/nbdist/
31+
/.nb-gradle/
32+
33+
### VS Code ###
34+
.vscode/
35+
36+
### Mac OS ###
37+
.DS_Store

build.gradle.kts

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*
2+
* build.gradle.kts
3+
*
4+
* ConanAndroidGradlePlugin (https://github.com/opendocument-app/ConanAndroidGradlePlugin)
5+
*
6+
* Copyright (c) 2024 ViliusSutkus89.com OpenDocument.app
7+
*
8+
* ConanAndroidGradlePlugin is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License version 3 as
10+
* published by the Free Software Foundation.
11+
*
12+
* ConanAndroidGradlePlugin is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19+
*/
20+
21+
plugins {
22+
kotlin("jvm") version "2.0.0"
23+
id("com.gradle.plugin-publish") version "1.2.1"
24+
}
25+
26+
repositories {
27+
mavenCentral()
28+
}
29+
30+
kotlin {
31+
jvmToolchain(17)
32+
}
33+
34+
group = "app.opendocument"
35+
version = "0.9.0"
36+
37+
gradlePlugin {
38+
website = "https://github.com/opendocument-app/ConanAndroidGradlePlugin"
39+
vcsUrl = "https://github.com/opendocument-app/ConanAndroidGradlePlugin.git"
40+
41+
plugins {
42+
create("conanAndroidGradlePlugin") {
43+
id = "app.opendocument.conanandroidgradleplugin"
44+
displayName = "Conan Android Gradle"
45+
description = "Plugin which plugs Conan to Android in Gradle"
46+
tags = listOf("conan", "android", "gradle")
47+
implementationClass = "app.opendocument.ConanAndroidGradlePlugin"
48+
}
49+
}
50+
}

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
kotlin.code.style=official

gradle/wrapper/gradle-wrapper.jar

59.3 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Mon Jul 22 18:30:26 EEST 2024
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

gradlew

Lines changed: 234 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)