Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Befound 1305 #42

Merged
merged 11 commits into from
May 13, 2024
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 11
java-version: 17
cache: gradle

# Set environment variables
Expand Down Expand Up @@ -82,6 +82,13 @@ jobs:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests

# Free GitHub Actions Environment Disk Space
- name: Maximize Build Space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
large-packages: false

# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
uses: actions/[email protected]
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

## Unreleased

### Update
- Supported SSDK 17.0.0

### Update
- Supported SSDK 16.0.1
- Fix broken ExampleControllerIT.java
Expand Down
9 changes: 5 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import org.jetbrains.changelog.Changelog
import org.jetbrains.changelog.markdownToHTML

fun properties(key: String) = project.findProperty(key).toString()
Expand All @@ -8,7 +9,7 @@ plugins {
// Kotlin support
id("org.jetbrains.kotlin.jvm") version "1.8.10"
// Gradle IntelliJ Plugin
id("org.jetbrains.intellij") version "1.13.3"
id("org.jetbrains.intellij") version "1.17.3"
// Gradle Changelog Plugin
id("org.jetbrains.changelog") version "2.0.0"
// Gradle Qodana Plugin
Expand All @@ -24,7 +25,7 @@ repositories {
}

dependencies{
compileOnly("org.apache.maven:maven-artifact:3.8.1")
compileOnly("org.apache.maven:maven-artifact:3.9.6")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.0")
}
Expand Down Expand Up @@ -88,9 +89,9 @@ tasks {

// Get the latest available change notes from the changelog file
changeNotes.set(provider {
changelog.run {
changelog.renderItem(changelog.run {
getOrNull(properties("pluginVersion")) ?: getLatest()
}.toHTML()
}, Changelog.OutputType.HTML)
})
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ platformVersion = 2022.2
platformPlugins = com.intellij.java, maven

# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 8.1
gradleVersion = 8.4

# Opt-out flag for bundling Kotlin standard library.
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/backbase/bst/common/SsdkUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ object SsdkUtils {
private const val defaultPackageName = "com.backbase.demo"

fun listVersionsSsdk(): List<String> {
return listOf("16.0.1","15.2.3")
return listOf("17.0.0","16.1.6","16.1.0")
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class BackbaseProjectWizard : ModuleBuilder(){

var myProjectId: MavenId? = null

var ssdkMavenId : MavenId = MavenId("com.backbase.buildingblocks", "service-sdk-starter-core", "15.2.3")
var ssdkMavenId : MavenId = MavenId("com.backbase.buildingblocks", "service-sdk-starter-core", "17.0.0")

override fun getNodeIcon(): Icon = BackbaseIcons.BACKBASE_PROJECT_LOGO

Expand Down
Loading