Skip to content

Commit 2cdd91a

Browse files
committed
Updating the specs to 23.1 following the main Fortify SSC release
1 parent c59d96d commit 2cdd91a

File tree

4 files changed

+20
-44996
lines changed

4 files changed

+20
-44996
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Micro Focus or one of its affiliates
3+
Copyright 2019 - 2023 Open Text
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Fortify Software Security Center REST API java client
44
Communicate with Fortify Software Security Center through REST API in java, a swagger generated client
5-
- API version: 1:21.1.1.0015
5+
- API version: 1:23.1.0.0145
66

77
## Generation:
88

@@ -27,7 +27,7 @@ Add this dependency to your project's POM:
2727
<dependency>
2828
<groupId>com.fortify</groupId>
2929
<artifactId>ssc-restapi-client</artifactId>
30-
<version>21.1</version>
30+
<version>23.1</version>
3131
<scope>compile</scope>
3232
</dependency>
3333
```
@@ -37,15 +37,15 @@ Add this dependency to your project's POM:
3737
Add this dependency to your project's build file:
3838

3939
```groovy
40-
compile "com.fortify:ssc-restapi-client:21.1"
40+
compile "com.fortify:ssc-restapi-client:23.1"
4141
```
4242

4343
### Others
4444

4545
At first generate the JAR by running the gradle build
4646
Then manually install the following JARs:
4747

48-
* build/libs/ssc-restapi-client-21.1.jar
48+
* build/libs/ssc-restapi-client-23.1.jar
4949
* build/swagger-code-ssc/build/target/lib/*.jar
5050

5151
## Getting Started

build.gradle

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
plugins {
22
id 'java'
33
id 'idea'
4-
id ('org.openapi.generator') version('5.2.1')
4+
id ('org.openapi.generator') version('5.4.0')
55
id 'maven-publish'
66
id 'signing'
7-
id 'io.github.gradle-nexus.publish-plugin' version '1.0.0'
7+
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
88
}
99

1010
repositories {
1111
mavenCentral()
1212
}
1313

1414
group = 'com.fortify'
15-
version = '22.2'
15+
version = '23.1'
1616
description 'Fortify SSC REST API client'
1717

1818
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -27,15 +27,17 @@ ext {
2727

2828
dependencies {
2929

30-
implementation "org.openapitools:openapi-generator-gradle-plugin:5.2.1"
31-
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
32-
implementation 'com.squareup.okhttp3:logging-interceptor:4.10.0'
33-
implementation 'io.swagger:swagger-annotations:1.6.6'
34-
implementation 'com.google.code.gson:gson:2.8.9'
30+
implementation "org.openapitools:openapi-generator-gradle-plugin:5.4.0"
31+
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
32+
implementation 'com.squareup.okhttp3:logging-interceptor:4.11.0'
33+
implementation 'io.swagger:swagger-annotations:1.6.10'
34+
implementation 'com.google.code.gson:gson:2.10.1'
3535
implementation 'io.gsonfire:gson-fire:1.8.5'
36-
implementation("com.google.code.findbugs:jsr305:3.0.2")
37-
implementation("javax.annotation:javax.annotation-api:1.3.2")
38-
testImplementation 'junit:junit:4.12'
36+
implementation 'com.google.code.findbugs:jsr305:3.0.2'
37+
implementation 'javax.ws.rs:jsr311-api:1.1.1'
38+
implementation 'javax.ws.rs:javax.ws.rs-api:2.1.1'
39+
implementation 'jakarta.annotation:jakarta.annotation-api:1.3.5'
40+
testImplementation 'junit:junit:4.13.2'
3941
}
4042

4143
task sourcesJar(type: Jar, dependsOn: classes) {
@@ -121,7 +123,7 @@ publishing {
121123
id = 'fortify'
122124
name = 'Fortify'
123125
email = 'fortify-oss@fortify.com'
124-
organization = 'Micro Focus Fortify'
126+
organization = 'Open Text Fortify'
125127
organizationUrl = 'https://www.microfocus.com/en-us/cyberres/application-security'
126128
}
127129
}

0 commit comments

Comments
 (0)