Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ShirasawaSama committed Dec 13, 2023
1 parent 162ca98 commit a82dd2b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ plugins {
id 'java'
}

group = 'com.eimsound.dsp.timestretchers'
group = 'com.github.EchoInMirror.EIMTimeStretchers'
version = System.getenv('VERSION') ?: '0.0.0'

subprojects {
apply plugin: 'java'
apply plugin: 'maven-publish'

group = 'com.github.EchoInMirror'
group = 'com.github.EchoInMirror.EIMTimeStretchers'
version = System.getenv('VERSION') ?: '0.0.0'

tasks.withType(JavaCompile).each {
Expand All @@ -23,11 +23,11 @@ subprojects {

publishing {
publications {
maven(MavenPublication) {
groupId 'com.github.EchoInMirror'
artifactId 'EIMTimeStretchers-' + project.name
version project.version
mavenJava(MavenPublication) {
from components.java
groupId project.group
artifactId project.name
version project.version
}
}
}
Expand Down

0 comments on commit a82dd2b

Please sign in to comment.