This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a commit to branch ignite-2.8-dotnet-build-fix
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/ignite-2.8-dotnet-build-fix by
this push:
new 9f7b444 .NET: Fix build script - exclude optional jars
9f7b444 is described below
commit 9f7b4445a4bff492c2f8262efa4b86aac3d9708c
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Feb 26 17:21:27 2020 +0300
.NET: Fix build script - exclude optional jars
---
modules/platforms/dotnet/build.ps1 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/platforms/dotnet/build.ps1
b/modules/platforms/dotnet/build.ps1
index 3965dca..458199e 100644
--- a/modules/platforms/dotnet/build.ps1
+++ b/modules/platforms/dotnet/build.ps1
@@ -162,7 +162,7 @@ Make-Dir($libsDir)
Get-ChildItem $jarDirs.Split(',') *.jar -recurse `
-include
"ignite-core*","ignite-indexing*","ignite-shmem*","ignite-spring*","lucene*","h2*","cache-api*","commons-*","spring*"
`
-exclude "*-sources*","*-javadoc*","*-tests*" `
- | ? { $_.FullName -inotmatch 'optional' } `
+ | ? { $_.FullName -inotmatch [IO.Path]::PathSeparator + 'optional' +
[IO.Path]::PathSeparator } `
| % { Copy-Item -Force $_ $libsDir }
# Restore directory