Skip to content

Commit

Permalink
releasing v 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jpaoneMines committed Apr 20, 2023
1 parent 616fedf commit 5f53429
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions csci448/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ plugins {
id 'maven-publish'
}

group = 'edu.mines.csci448'
version = '0.1.1'
group = 'com.github.jpaoneMines'
version = "0.1.2"

android {
namespace 'edu.mines.csci448'
Expand All @@ -14,8 +14,8 @@ android {
defaultConfig {
minSdk 29
targetSdk 33
versionCode 2
versionName "0.1.1"
versionCode 3
versionName "$version"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand All @@ -41,9 +41,6 @@ android {
kotlinCompilerExtensionVersion '1.4.1'
}
publishing {
singleVariant('debug') {
withSourcesJar()
}
singleVariant('release') {
withSourcesJar()
}
Expand All @@ -54,9 +51,9 @@ afterEvaluate {
publishing {
publications {
release(MavenPublication) {
groupId = 'edu.mines.csci448'
artifactId = 'library'
version = '0.1.1'
groupId = "$group"
artifactId = 'csci448'
version = "$version"

from components.release
pom {
Expand All @@ -72,7 +69,7 @@ afterEvaluate {
developers {
developer {
id = 'jpaoneMines'
name = 'Jeffrey Paone'
name = 'Dr. Jeffrey Paone'
email = '[email protected]'
}
}
Expand All @@ -81,7 +78,7 @@ afterEvaluate {
}
repositories {
maven {
name = 'library'
name = 'csci449'
url = uri("file://${project.buildDir}/repo")
}
}
Expand Down

0 comments on commit 5f53429

Please sign in to comment.