Skip to content

Commit 28396cd

Browse files
authored
#46 Fix broken link (#47)
* #46: Increment version number * #46: Remove broken link * Fix readme
1 parent 94efc8a commit 28396cd

File tree

8 files changed

+121
-65
lines changed

8 files changed

+121
-65
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ tmp
5656
.cache
5757
.classpath
5858
.project
59+
.settings/org.eclipse.core.resources.prefs
60+
.settings/org.eclipse.jdt.apt.core.prefs
61+
.settings/org.eclipse.m2e.core.prefs
5962
.scala_dependencies
6063
*.sc
6164

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Import Export UDF Common Scala
22

33
[![Build Status](https://github.com/exasol/import-export-udf-common-scala/actions/workflows/ci-build.yml/badge.svg)](https://github.com/exasol/import-export-udf-common-scala/actions/workflows/ci-build.yml)
4-
[![Maven Central Import Export UDF Common Scala](https://img.shields.io/maven-central/v/com.exasol/import-export-udf-common-scala)](https://search.maven.org/artifact/com.exasol/import-export-udf-common-scala)
4+
[![Maven Central – Import Export UDF Common Scala](https://img.shields.io/maven-central/v/com.exasol/import-export-udf-common-scala)](https://search.maven.org/artifact/com.exasol/import-export-udf-common-scala)
55

66
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Aimport-export-udf-common-scala&metric=alert_status)](https://sonarcloud.io/dashboard?id=com.exasol%3Aimport-export-udf-common-scala)
77

dependencies.md

Lines changed: 50 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changelog.md

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changes_0.4.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This release fixes vulnerabilities in the following dependencies:
88

99
* com.fasterxml.jackson.core:jackson-databind:jar:2.12.5 in compile
1010
* CVE-2020-36518, severity CWE-787: Out-of-bounds Write (7.5)
11-
* [sonatype-2021-4682](https://ossindex.sonatype.org/vulnerability/sonatype-2021-4682), severity CWE-400: Uncontrolled Resource Consumption ('Resource Exhaustion')
11+
* sonatype-2021-4682, severity CWE-400: Uncontrolled Resource Consumption ('Resource Exhaustion')
1212

1313
## Bugfixes
1414

doc/changes/changes_1.1.1.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Import Export UDF Common Scala 1.1.1, released 2023-??-??
2+
3+
Code name:
4+
5+
## Summary
6+
7+
## Documentation
8+
9+
* #46: Fixed broken link
10+
11+
## Dependency Updates
12+
13+
### Plugin Dependency Updates
14+
15+
* Updated `com.exasol:error-code-crawler-maven-plugin:1.2.2` to `1.2.3`
16+
* Updated `com.exasol:project-keeper-maven-plugin:2.9.3` to `2.9.7`
17+
* Updated `org.apache.maven.plugins:maven-compiler-plugin:3.10.1` to `3.11.0`
18+
* Updated `org.apache.maven.plugins:maven-deploy-plugin:3.0.0` to `3.1.1`
19+
* Updated `org.apache.maven.plugins:maven-enforcer-plugin:3.1.0` to `3.3.0`
20+
* Updated `org.apache.maven.plugins:maven-javadoc-plugin:3.4.1` to `3.5.0`
21+
* Updated `org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M8` to `3.0.0`
22+
* Added `org.basepom.maven:duplicate-finder-maven-plugin:1.5.1`
23+
* Updated `org.codehaus.mojo:flatten-maven-plugin:1.3.0` to `1.4.1`
24+
* Updated `org.codehaus.mojo:versions-maven-plugin:2.14.2` to `2.15.0`
25+
* Updated `org.jacoco:jacoco-maven-plugin:0.8.8` to `0.8.9`

pk_generated_parent.pom

Lines changed: 37 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.exasol</groupId>
54
<artifactId>import-export-udf-common-scala</artifactId>
6-
<version>1.1.0</version>
5+
<version>1.1.1</version>
76
<name>Import Export UDF Common Scala</name>
87
<description>Common import export libraries used in Exasol user defined functions</description>
98
<url>https://github.com/exasol/import-export-udf-common-scala/</url>
109
<parent>
1110
<artifactId>import-export-udf-common-scala-generated-parent</artifactId>
1211
<groupId>com.exasol</groupId>
13-
<version>1.1.0</version>
12+
<version>1.1.1</version>
1413
<relativePath>pk_generated_parent.pom</relativePath>
1514
</parent>
1615
<properties>
@@ -276,7 +275,7 @@
276275
<plugin>
277276
<groupId>com.exasol</groupId>
278277
<artifactId>project-keeper-maven-plugin</artifactId>
279-
<version>2.9.3</version>
278+
<version>2.9.7</version>
280279
<executions>
281280
<execution>
282281
<goals>

0 commit comments

Comments
 (0)