Skip to content

Commit

Permalink
SPOCON-2020-11-21 updated new librespot version to 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
spocon committed Nov 21, 2020
1 parent f728a86 commit 70e0255
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 100 deletions.
2 changes: 1 addition & 1 deletion Vagrant/upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ export UPLOAD=true
GPG_TTY=$(tty)
export GPG_TTY

ansible-playbook ../Ansible/start.yml -e lovspotify_version=1.5.2
ansible-playbook ../Ansible/start.yml -e lovspotify_version=1.5.3


198 changes: 99 additions & 99 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,99 +1,99 @@

plugins {
id 'org.springframework.boot' version '2.3.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'maven'
id 'signing'
}

group = 'me.haga.librespot.spotifi'
description = 'Spotify Client + RestAPI + Spotify GUI'


sourceCompatibility = '11'


repositories {
mavenCentral()
}

dependencies {
implementation('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.11.0'
implementation 'com.google.protobuf:protobuf-java-util:3.11.4'
implementation 'xyz.gianlu.librespot:librespot-player:1.5.1'
implementation 'org.apache.logging.log4j:log4j-core:2.13.2'
implementation 'org.apache.logging.log4j:log4j-api:2.13.2'
}

/*
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
signing {
required { gradle.taskGraph.hasTask('uploadArchives') }
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2") {
authentication(userName: spoconMavenUsername, password: spoconMavenPassword)
}
pom.project {
name 'Lovspotify'
packaging 'jar'
// optionally artifactId can be defined here
description 'Spotify Client + RestAPI + Spotify GUI written in Java '
url 'https://github.com/spocon/lovspotify'
scm {
connection 'scm:git:git://github.com/spocon/lovspotify.git'
developerConnection 'scm:git:ssh://github.com:spocon/lovspotify.git'
url 'https://github.com/spocon/lovspotify'
}
licenses {
license {
name 'The Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
organization 'Lovspotify Developers'
organizationUrl 'https://github.com/spocon/lovspotify/graphs/contributors'
}
}
}
pom.version = "1.5.2"
pom.artifactId = "lovspotify"
pom.groupId = "me.haga.librespot.spotifi"
}
}
}*/

plugins {
id 'org.springframework.boot' version '2.3.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'maven'
id 'signing'
}

group = 'me.haga.librespot.spotifi'
description = 'Spotify Client + RestAPI + Spotify GUI'


sourceCompatibility = '11'


repositories {
mavenCentral()
}

dependencies {
implementation('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.11.0'
implementation 'com.google.protobuf:protobuf-java-util:3.11.4'
implementation 'xyz.gianlu.librespot:librespot-player:1.5.2'
implementation 'org.apache.logging.log4j:log4j-core:2.13.2'
implementation 'org.apache.logging.log4j:log4j-api:2.13.2'
}


task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}

artifacts {
archives sourcesJar
archives javadocJar
}


signing {
required { gradle.taskGraph.hasTask('uploadArchives') }

sign configurations.archives
}


uploadArchives {

repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }

repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2") {
authentication(userName: spoconMavenUsername, password: spoconMavenPassword)
}

pom.project {
name 'Lovspotify'
packaging 'jar'
// optionally artifactId can be defined here
description 'Spotify Client + RestAPI + Spotify GUI written in Java '
url 'https://github.com/spocon/lovspotify'

scm {
connection 'scm:git:git://github.com/spocon/lovspotify.git'
developerConnection 'scm:git:ssh://github.com:spocon/lovspotify.git'
url 'https://github.com/spocon/lovspotify'
}

licenses {
license {
name 'The Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}

developers {
developer {
organization 'Lovspotify Developers'
organizationUrl 'https://github.com/spocon/lovspotify/graphs/contributors'
}
}
}

pom.version = "1.5.3"
pom.artifactId = "lovspotify"
pom.groupId = "me.haga.librespot.spotifi"
}
}
}
35 changes: 35 additions & 0 deletions template/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
lovspotify (1.5.3) bionic; urgency=medium

* Update to 1.5.3, for more information please see
https://github.com/spocon/lovspotify

-- Thorsten H <spocondeb@gmail.com> Sat, 21 Nov 2020 12:36:24 +0000

lovspotify (1.5.3) bionic; urgency=medium

* Update to 1.5.3, for more information please see
https://github.com/spocon/lovspotify

-- Thorsten H <spocondeb@gmail.com> Sat, 21 Nov 2020 12:32:28 +0000

lovspotify (1.5.3) bionic; urgency=medium

* Update to 1.5.3, for more information please see
https://github.com/spocon/lovspotify

-- Thorsten H <spocondeb@gmail.com> Sat, 21 Nov 2020 12:30:50 +0000

lovspotify (1.5.3) bionic; urgency=medium

* Update to 1.5.3, for more information please see
https://github.com/spocon/lovspotify

-- Thorsten H <spocondeb@gmail.com> Sat, 21 Nov 2020 12:29:27 +0000

lovspotify (1.5.3) bionic; urgency=medium

* Update to 1.5.3, for more information please see
https://github.com/spocon/lovspotify

-- Thorsten H <spocondeb@gmail.com> Sat, 21 Nov 2020 12:26:31 +0000

lovspotify (1.5.2) bionic; urgency=medium

* Update to 1.5.2, for more information please see
Expand Down

0 comments on commit 70e0255

Please sign in to comment.