Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dcat-catalog-proxy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Open-Data
dcat-catalog-proxy
Commits
91b944ae
Commit
91b944ae
authored
2 years ago
by
Jesper Zedlitz
Browse files
Options
Downloads
Patches
Plain Diff
aktuelle Bibliotheken
parent
46abcd3f
No related branches found
No related tags found
No related merge requests found
Pipeline
#400
passed
2 years ago
Stage: build
Stage: test
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
owasp-suppressions.xml
+4
-0
4 additions, 0 deletions
owasp-suppressions.xml
pom.xml
+14
-5
14 additions, 5 deletions
pom.xml
rules.xml
+50
-0
50 additions, 0 deletions
rules.xml
with
68 additions
and
5 deletions
owasp-suppressions.xml
+
4
−
0
View file @
91b944ae
...
...
@@ -4,4 +4,8 @@
<notes>
According to the description of the vulnerability, only Spring up to version 5.3.16 is affected. But we use at least version 5.3.20.
</notes>
<cve>
CVE-2016-1000027
</cve>
</suppress>
<suppress>
<notes>
No YAML modifiable to the user is read.
</notes>
<cve>
CVE-2022-1471
</cve>
</suppress>
</suppressions>
This diff is collapsed.
Click to expand it.
pom.xml
+
14
−
5
View file @
91b944ae
<?xml version="1.0" encoding="utf-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.7.
3
</version>
<version>
2.7.
7
</version>
<relativePath
/>
</parent>
<groupId>
de.landsh.opendata
</groupId>
...
...
@@ -14,7 +15,7 @@
<description>
DCAT catalog proxy
</description>
<properties>
<java.version>
1.8
</java.version>
<jena.version>
4.
6.1
</jena.version>
<jena.version>
4.
7.0
</jena.version>
</properties>
<dependencies>
<dependency>
...
...
@@ -61,13 +62,13 @@
<dependency>
<groupId>
org.mock-server
</groupId>
<artifactId>
mockserver-netty
</artifactId>
<version>
5.1
4
.0
</version>
<version>
5.1
5
.0
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.mock-server
</groupId>
<artifactId>
mockserver-client-java
</artifactId>
<version>
5.1
4
.0
</version>
<version>
5.1
5
.0
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
...
...
@@ -177,6 +178,14 @@
<artifactId>
spotbugs-maven-plugin
</artifactId>
<version>
4.5.3.0
</version>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
versions-maven-plugin
</artifactId>
<version>
2.14.2
</version>
<configuration>
<rulesUri>
file:///${project.basedir}/rules.xml
</rulesUri>
</configuration>
</plugin>
</plugins>
</build>
</project>
This diff is collapsed.
Click to expand it.
rules.xml
0 → 100644
+
50
−
0
View file @
91b944ae
<?xml version="1.0" encoding="utf-8"?>
<ruleset
xmlns=
"http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
comparisonMethod=
"maven"
xsi:schemaLocation=
"http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0 http://mojo.codehaus.org/versions-maven-plugin/xsd/rule-2.0.0.xsd"
>
<ignoreVersions>
<!-- Ignore Alpha's, Beta's, release candidates and milestones -->
<ignoreVersion
type=
"regex"
>
(?i).*Alpha(?:-?\d+)?
</ignoreVersion>
<ignoreVersion
type=
"regex"
>
(?i).*a(?:-?\d+)?
</ignoreVersion>
<ignoreVersion
type=
"regex"
>
(?i).*Beta(?:-?\d+)?
</ignoreVersion>
<ignoreVersion
type=
"regex"
>
(?i).*-B(?:-?\d+)?
</ignoreVersion>
<ignoreVersion
type=
"regex"
>
(?i).*RC(?:-?\d+)?
</ignoreVersion>
<ignoreVersion
type=
"regex"
>
(?i).*CR(?:-?\d+)?
</ignoreVersion>
<ignoreVersion
type=
"regex"
>
(?i).*M(?:-?\d+)?
</ignoreVersion>
</ignoreVersions>
<rules>
<rule
groupId=
"org.springframework.boot"
comparisonMethod=
"maven"
>
<ignoreVersions>
<ignoreVersion
type=
"regex"
>
3.*
</ignoreVersion>
</ignoreVersions>
</rule>
<rule
groupId=
"org.springframework.security"
comparisonMethod=
"maven"
>
<ignoreVersions>
<ignoreVersion
type=
"regex"
>
6.*
</ignoreVersion>
</ignoreVersions>
</rule>
<rule
groupId=
"org.springframework.ws"
comparisonMethod=
"maven"
>
<ignoreVersions>
<ignoreVersion
type=
"regex"
>
4.*
</ignoreVersion>
</ignoreVersions>
</rule>
<rule
groupId=
"org.apache.cxf"
comparisonMethod=
"maven"
>
<ignoreVersions>
<ignoreVersion
type=
"regex"
>
4.*
</ignoreVersion>
</ignoreVersions>
</rule>
<rule
groupId=
"org.elasticsearch"
comparisonMethod=
"maven"
>
<ignoreVersions>
<ignoreVersion
type=
"regex"
>
[78].*
</ignoreVersion>
</ignoreVersions>
</rule>
<rule
groupId=
"org.elasticsearch.client"
comparisonMethod=
"maven"
>
<ignoreVersions>
<ignoreVersion
type=
"regex"
>
[78].*
</ignoreVersion>
</ignoreVersions>
</rule>
<rule
groupId=
"org.thymeleaf.extras"
comparisonMethod=
"maven"
>
<ignoreVersions>
<ignoreVersion
type=
"regex"
>
3.1.*
</ignoreVersion>
</ignoreVersions>
</rule>
</rules>
</ruleset>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment