Skip to content

Commit

Permalink
[SSHD-1026] Improve build reproductibility (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Jul 31, 2020
1 parent ebc5fbd commit f5b2617
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -28,6 +28,7 @@
## Behavioral changes and enhancements

* [SSHD-1020](https://issues.apache.org/jira/browse/SSHD-1020) SSH connections getting closed abruptly with timeout exceptions.
* [SSHD-1026](https://issues.apache.org/jira/browse/SSHD-1026) Improve build reproductibility.
* [SSHD-1028](https://issues.apache.org/jira/browse/SSHD-1028) Fix SSH_MSG_DISCONNECT: Too many concurrent connections.
* [SSHD-1032](https://issues.apache.org/jira/browse/SSHD-1032) Fix possible ArrayIndexOutOfBoundsException in ChannelAsyncOutputStream.
* [SSHD-1033](https://issues.apache.org/jira/browse/SSHD-1033) Fix simultaneous usage of dynamic and local port forwarding.
Expand Down
10 changes: 4 additions & 6 deletions pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>15</version>
<version>23</version>
</parent>

<groupId>org.apache.sshd</groupId>
Expand Down Expand Up @@ -81,6 +81,7 @@
<properties>
<projectRoot>${project.basedir}</projectRoot>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputTimestamp>2020-01-01T00:00:00Z</project.build.outputTimestamp>

<!-- NOTE: actual value updated by groovy-maven-plugin on initialization phase -->
<!-- workspace.root.dir>${project.basedir}</workspace.root.dir -->
Expand Down Expand Up @@ -121,11 +122,7 @@

<surefire.plugin.version>2.22.2</surefire.plugin.version>
<maven.archiver.version>3.5.0</maven.archiver.version>
<!--
NOTE: upgrading beyond this version causes
exceptions in the javadoc plugin
-->
<plexus.archiver.version>4.1.0</plexus.archiver.version>
<plexus.archiver.version>4.2.0</plexus.archiver.version>
<!-- See https://pmd.github.io/ for available latest version -->
<pmd.version>6.25.0</pmd.version>

Expand Down Expand Up @@ -1293,6 +1290,7 @@
<addLicense>true</addLicense>
<addArtifact>true</addArtifact>
</properties>
<outputTimestamp>${project.build.outputTimestamp}</outputTimestamp> <!-- 01/01/2020 -->
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit f5b2617

Please sign in to comment.