Skip to content

Commit 5975564

Browse files
author
Vincent Gachet
committed
Fix pom file error
1 parent 33c326c commit 5975564

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

gradle.properties

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1818
# org.gradle.parallel=true
1919

20+
projectversion = 1.0.35
21+
22+
publishedgroupid = com.github.VGachet
23+
libraryname = sma_assetmanager
24+
2025
librarydescription = Smartapps asset manager library
2126

2227
siteurl = https://github.com/smartguide

lib_smaassetmanager/build.gradle

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ plugins {
44
id 'maven-publish'
55
}
66

7+
group = publishedgroupid
8+
79
android {
810
compileSdkVersion 30
911
buildToolsVersion "30.0.2"
@@ -41,7 +43,38 @@ afterEvaluate {
4143

4244
groupId = 'com.github.VGachet'
4345
artifactId = 'sma_assetmanager'
44-
version = '1.0.34'
46+
version = '1.0.35'
47+
48+
pom {
49+
packaging 'aar'
50+
groupId 'com.github.VGachet'
51+
artifactId 'sma_assetmanager'
52+
53+
// Add your description here
54+
name = 'sma_assetmanager'
55+
description = 'Smartapps asset manager library'
56+
url = 'https://smartapps.fr/'
57+
58+
// Set your license
59+
licenses {
60+
license {
61+
name = 'The Apache Software License, Version 2.0'
62+
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
63+
}
64+
}
65+
developers {
66+
developer {
67+
id = 'smartapps'
68+
name = 'Smartapps'
69+
70+
}
71+
}
72+
scm {
73+
connection = 'https://github.com/smartguide.git'
74+
developerConnection = 'https://github.com/smartguide.git'
75+
url = 'https://github.com/smartguide.git'
76+
}
77+
}
4578
}
4679
}
4780
}

0 commit comments

Comments
 (0)