Skip to content

Commit 18b3193

Browse files
committed
Fix build failure
1 parent a2a3564 commit 18b3193

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

lib/build.gradle

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,30 @@ afterEvaluate {
3838
publications {
3939
release(MavenPublication) {
4040
from components.release
41-
groupId = 'com.artifex.mupdf.viewer'
42-
artifactId = 'mupdf'
43-
description = 'Mupdf Android'
44-
version = '1.0.0'
41+
pom {
42+
groupId = 'com.artifex.mupdf.viewer'
43+
artifactId = 'mupdf'
44+
licenses {
45+
license {
46+
name = 'GNU Affero General Public License'
47+
url = 'https://www.gnu.org/licenses/agpl-3.0.html'
48+
}
49+
}
50+
developers {
51+
developer {
52+
id = 'vishalnehra'
53+
name = 'Vishal Nehra'
54+
email = 'vishalmeham2@gmail.com'
55+
}
56+
}
57+
scm {
58+
connection = 'scm:git@github.com:TeamAmaze/mupdf-android-viewer.git'
59+
developerConnection = 'scm:git@github.com:TeamAmaze/mupdf-android-viewer.git'
60+
url = 'https://teamamaze.xyz/'
61+
}
62+
description = 'Mupdf Android'
63+
version = '1.0.0'
64+
}
4565
}
4666
}
4767
}

0 commit comments

Comments
 (0)