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

After release fixes #232

Merged
merged 2 commits into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/**
* Cryptographic message syntax document encoder/decoder - see
*
* @see <a href=https://en.wikipedia.org/wiki/Cryptographic_Message_Syntax">CMS
* @see <a href="https://en.wikipedia.org/wiki/Cryptographic_Message_Syntax">CMS
* wiki</a>
*/
@Slf4j
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* It means that path/to/file is encrypted to cipher(path)/cipher(to)/cipher(file) and each invocation of example:
* cipher(path) will yield same string, but cipher(path)/cipher(path) will not yield same segments -
* it will be more like abc/cde and not like abc/abc.
* Additionally each segment is authenticated against its parent path hash, so attacker can't
* Additionally, each segment is authenticated against its parent path hash, so attacker can't
* move a/file to b/file without being detected.
*/
@Slf4j
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@

<artifactId>datasafe-business-tests-random-actions</artifactId>

<properties>
<maven.surefire.plugin.version>2.22.2</maven.surefire.plugin.version>
</properties>

<dependencies>
<dependency>
<groupId>de.adorsys</groupId>
Expand Down Expand Up @@ -185,9 +181,8 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<version>${surefire.version}</version>
<configuration>
<forkMode>once</forkMode>
<argLine>${testArgs}</argLine>
</configuration>
</plugin>
Expand Down
6 changes: 5 additions & 1 deletion last-module-codecoverage-check/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@

<artifactId>last-module-codecoverage-check</artifactId>

<properties>
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
</properties>

<dependencies>
<dependency>
<groupId>de.adorsys</groupId>
Expand Down Expand Up @@ -144,7 +148,7 @@
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<version>${maven-resources-plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
30 changes: 20 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<jupiter.version>5.10.0</jupiter.version>
<assertj.version>3.12.2</assertj.version>
<mockito.version>5.5.0</mockito.version>
<surefire.version>2.22.1</surefire.version>
<surefire.version>3.1.2</surefire.version>
<compress.version>1.21</compress.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<deploy.disabled>false</deploy.disabled>
Expand Down Expand Up @@ -122,6 +122,15 @@
<keymanagement.version>0.0.9</keymanagement.version>
<jakarta.annotation-api.varsion>2.1.1</jakarta.annotation-api.varsion>
<jaxb-api.version>2.3.1</jaxb-api.version>
<maven-deploy-plugin.version>2.8.1</maven-deploy-plugin.version>
<buildnumber-maven-plugin.version>1.3</buildnumber-maven-plugin.version>
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
<maven-release-plugin.version>2.5.2</maven-release-plugin.version>
<maven-project-info-reports-plugin.version>2.7</maven-project-info-reports-plugin.version>
<maven-javadoc-plugin.version>3.6.0</maven-javadoc-plugin.version>
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -574,7 +583,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<version>${nexus-staging-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype</serverId>
Expand All @@ -587,7 +596,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -600,7 +609,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<version>${maven-gpg-plugin.version}</version>
<configuration>
<keyname>[email protected]</keyname>
<gpgArguments>
Expand All @@ -627,8 +636,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<additionalOptions>-Xdoclint:none</additionalOptions>
</configuration>
<executions>
<execution>
Expand All @@ -646,11 +656,11 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
<version>${maven-project-info-reports-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<version>${maven-release-plugin.version}</version>
<configuration>
<releaseProfiles>release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
Expand All @@ -660,7 +670,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<version>${maven-jar-plugin.version}</version>
<configuration>
<archive>
<manifest>
Expand All @@ -683,7 +693,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.3</version>
<version>${buildnumber-maven-plugin.version}</version>
<executions>
<execution>
<phase>validate</phase>
Expand All @@ -700,7 +710,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<version>${maven-deploy-plugin.version}</version>
<configuration>
<skip>${deploy.disabled}</skip>
</configuration>
Expand Down