Skip to content

Commit

Permalink
Adding ssdk 16.0.1 as supported version (#40)
Browse files Browse the repository at this point in the history
* Adding ssdk 16.0.1 as supported version

* Disabling Qodana
  • Loading branch information
fredysierra authored Oct 31, 2023
1 parent 0335849 commit ee6ea03
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ jobs:
path: ${{ github.workspace }}/build/reports/pluginVerifier

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/[email protected]
# - name: Qodana - Code Inspection
# uses: JetBrains/[email protected]

# Prepare plugin archive content for creating artifact
- name: Prepare Plugin Artifact
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## Unreleased

### Update
- Supported SSDK 16.0.1
- Fix broken ExampleControllerIT.java

## 0.0.10 - 2023-04-20

### Update
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("15.2.0", "14.2.1", "13.4.1")
return listOf("16.0.1","15.2.3")
}

/**
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", "13.3.1")
var ssdkMavenId : MavenId = MavenId("com.backbase.buildingblocks", "service-sdk-starter-core", "15.2.3")

override fun getNodeIcon(): Icon = BackbaseIcons.BACKBASE_PROJECT_LOGO

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ExampleControllerIT {

MvcResult result =
mvc.perform(get("/message")
.header(AUTHORIZATION, TestRestTemplateConfiguration.TEST_SERVICE_TOKEN))
.header(AUTHORIZATION, TestRestTemplateConfiguration.TEST_SERVICE_BEARER))
.andDo(print())
.andExpect(status().isOk())
.andExpect(header().string(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON_VALUE))
Expand Down

0 comments on commit ee6ea03

Please sign in to comment.