Skip to content

Commit

Permalink
feat: configurations for publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fidel Huarcaya committed Apr 19, 2023
1 parent 6d5367f commit dd7a010
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion mathview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,18 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.github.fidelhuarcaya' //your git id
artifactId = 'MathView' //your-repository
version = '1.0' // As same as the Tag
}
}
}
}
/*
publishing {
publications {
Expand Down

0 comments on commit dd7a010

Please sign in to comment.