Skip to content

Commit

Permalink
Merge branch 'master' into feat/azure-gh
Browse files Browse the repository at this point in the history
  • Loading branch information
yannick-roeder committed Feb 6, 2024
2 parents 4d2631c + 9a67ab6 commit 59862de
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 6 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Change Log

## [1.1.11](https://github.com/bakdata/gradle-plugins/tree/1.1.11) (2024-01-29)
[Full Changelog](https://github.com/bakdata/gradle-plugins/compare/1.1.10...1.1.11)

**Merged pull requests:**

- Update Jacoco for Java 21 compatibility [\#32](https://github.com/bakdata/gradle-plugins/pull/32) ([@philipp94831](https://github.com/philipp94831))

## [1.1.10](https://github.com/bakdata/gradle-plugins/tree/1.1.10) (2024-01-29)
[Full Changelog](https://github.com/bakdata/gradle-plugins/compare/1.1.9...1.1.10)

**Merged pull requests:**

- Update SonarQube Plugin [\#25](https://github.com/bakdata/gradle-plugins/pull/25) ([@philipp94831](https://github.com/philipp94831))

## [1.1.9](https://github.com/bakdata/gradle-plugins/tree/1.1.9) (2024-01-10)
[Full Changelog](https://github.com/bakdata/gradle-plugins/compare/1.1.8...1.1.9)


## [1.1.8](https://github.com/bakdata/gradle-plugins/tree/1.1.8) (2024-01-10)
[Full Changelog](https://github.com/bakdata/gradle-plugins/compare/1.1.7...1.1.8)

**Closed issues:**

- docs? [\#22](https://github.com/bakdata/gradle-plugins/issues/22)

**Merged pull requests:**

- Configure staging profile ID for Nexus release [\#31](https://github.com/bakdata/gradle-plugins/pull/31) ([@philipp94831](https://github.com/philipp94831))

## [1.1.7](https://github.com/bakdata/gradle-plugins/tree/1.1.7) (2021-09-02)
[Full Changelog](https://github.com/bakdata/gradle-plugins/compare/1.1.6...1.1.7)

Expand Down
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ plugins {
// release
id("net.researchgate.release") version "2.6.0"
// eat your own dog food - apply the plugins to this plugin project
id("com.bakdata.sonar") version "1.1.6"
id("com.bakdata.sonatype") version "1.1.6"
id("com.bakdata.sonar") version "1.1.7"
id("com.bakdata.sonatype") version "1.1.7"
id("org.hildan.github.changelog") version "0.8.0"
}

Expand Down Expand Up @@ -94,3 +94,6 @@ if (!version.toString().endsWith("-SNAPSHOT")) {
}
}
}

val sonarqube by tasks
sonarqube.enabled = false //FIXME requires Java 17
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=1.1.8-SNAPSHOT
version=1.1.12-SNAPSHOT
org.gradle.caching=true
org.gradle.parallel=true
2 changes: 1 addition & 1 deletion sonar/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply(plugin = "org.gradle.kotlin.kotlin-dsl")
description = "Configures sonar for multi project setups for all jvm languages"

dependencies {
implementation( "org.sonarsource.scanner.gradle", "sonarqube-gradle-plugin", "3.3")
implementation( "org.sonarsource.scanner.gradle", "sonarqube-gradle-plugin", "3.4.0.2513")
}

tasks.withType<Test> {
Expand Down
2 changes: 1 addition & 1 deletion sonar/src/main/kotlin/com/bakdata/gradle/SonarPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class SonarPlugin : Plugin<Project> {

project.configure<JacocoPluginExtension> {
// smaller versions won't work with kotlin properly
toolVersion = "0.8.3"
toolVersion = "0.8.11"
}

tasks.withType<JacocoReport> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ class SonatypePlugin : Plugin<Project> {
// first try to set all settings, even if not given (yet)
project.configure<NexusStagingExtension> {
packageGroup = "com.bakdata"
stagingProfileId = "8412378836ed9c"
username = getOverriddenSetting(SonatypeSettings::osshrUsername)
password = getOverriddenSetting(SonatypeSettings::osshrPassword)
getOverriddenSetting(SonatypeSettings::nexusUrl)?.let { serverUrl = it }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ internal class SonatypePluginIT {
companion object {
private const val TEST_GROUP: String = "com.bakdata"

private const val PROFILE_ID: Int = 7
private const val PROFILE_ID: String = "8412378836ed9c"

private const val STAGING_ID: Int = 5

Expand Down

0 comments on commit 59862de

Please sign in to comment.