Skip to content
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
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
*.js text eol=lf
*.bat text eol=crlf
*.vbs text eol=crlf
mvnw text eol=lf
mvnw.cmd text eol=crlf

# These files are binary and should be left untouched
# (binary is macro for -text -diff)
Expand Down
3 changes: 3 additions & 0 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
wrapperVersion=3.3.4
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip
4 changes: 3 additions & 1 deletion assembly/src/main/descriptors/unix-src.xml
Comment thread
chrjohn marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
<include>**/*.bin</include>
<include>**/*.jnilib</include>
<include>**/*.cert</include>
<include>**/.mvn/*</include>
<include>**/.mvn/**</include>
<include>mvnw.cmd</include>

<include>sshd-openpgp/src/test/resources/**/*</include>
</includes>
Expand Down Expand Up @@ -92,6 +93,7 @@

<exclude>sshd-core/src/docs/*.txt</exclude>
<exclude>sshd-openpgp/src/test/resources/**/*</exclude>
<exclude>mvnw.cmd</exclude>
</excludes>
<lineEnding>unix</lineEnding>
</fileSet>
Expand Down
4 changes: 3 additions & 1 deletion assembly/src/main/descriptors/windows-src.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
<include>**/*.jnilib</include>
<include>**/*.cert</include>
<include>**/*.sh</include>
<include>**/.mvn/*</include>
<include>**/.mvn/**</include>
<include>mvnw</include>

<include>sshd-openpgp/src/test/resources/**/*</include>
<include>sshd-core/src/test/resources/org/apache/sshd/client/opensshcerts/**/*</include>
Expand Down Expand Up @@ -98,6 +99,7 @@
<exclude>sshd-core/src/test/resources/org/apache/sshd/client/opensshcerts/**/*</exclude>
<exclude>sshd-benchmarks/src/main/resources/org/apache/sshd/**/*</exclude>
<exclude>sshd-openpgp/src/test/resources/**/*</exclude>
<exclude>mvnw</exclude>
</excludes>
<lineEnding>dos</lineEnding>
</fileSet>
Expand Down
295 changes: 295 additions & 0 deletions mvnw

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading