IKVM.Maven.Sdk 1.8.2

Prefix Reserved
dotnet add package IKVM.Maven.Sdk --version 1.8.2                
NuGet\Install-Package IKVM.Maven.Sdk -Version 1.8.2                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IKVM.Maven.Sdk" Version="1.8.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IKVM.Maven.Sdk --version 1.8.2                
#r "nuget: IKVM.Maven.Sdk, 1.8.2"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install IKVM.Maven.Sdk as a Cake Addin
#addin nuget:?package=IKVM.Maven.Sdk&version=1.8.2

// Install IKVM.Maven.Sdk as a Cake Tool
#tool nuget:?package=IKVM.Maven.Sdk&version=1.8.2                

IKVM.Maven.Sdk - IKVM support for Maven dependencies

IKVM.Maven.Sdk is a set of MSBuild extensions for referencing Maven artifacts within .NET SDK projects.

To use, install the IKVM.Maven.Sdk package from NuGet, and add a <MavenReference /> element to your SDK-style project. Various Maven options are supported through item-metadata.

The simplest use case is to specify the group ID and artifact ID coordinates on the item specification, and use Version for the metadata.

<ItemGroup>
    <MavenReference Include="org.foo.bar:foo-lib" Version="1.2.3" />
</ItemGroup>

Optionally, use an arbitrary value for the item specification, and explicitely specify information through metadata:

<ItemGroup>
    <MavenReference Include="foo-lib">
        <GroupId>org.foo.bar</GroupId>
        <ArtifactId>foo-lib</ArtifactId>
        <Classifier></Classifier>
        <Version>1.2.3</Version>
        <Scope></Scope>
        <Exclusions></Exclusions>
    </MavenReference>
</ItemGroup>

Underspecified Dependencies

It is fairly common for Java developers to underspecify dependencies within Maven. For instance, if their library is often used as a dependency of another aggregate package, or another library, at runtime, they can be reasonably certain classes they rely on will exist. Also, if they do not exist, but the specific code path that requires dependent classes is never hit, users won't experience any issue.

However, since IKVM is statically compiling assemblies, we need to be able to properly track dependencies between each assembly we might be building. We can't fully build Library A if it depends on missing classes from Library B. As such, IKVM.Maven.Sdk requires that Maven dependencies be fully specified.

But, we aren't the authors of Maven artifacts. Nor can we provide local overrides for missing Maven dependencies, as the Maven artifacts need to be available to any user who might indirectly add a reference through a NuGet package. Therefor, if you encounter an underspecified or missing dependency in Maven, the proper place to fix it is in Maven. Report the missing dependency to the authors of the Maven library you are attempting to use.

Transitive Dependencies

The <MavenReference /> item group operates similar to a dependency in Maven. All transitive dependencies are collected and resolved, and then the final output is produced. However, unlike PackageReferences, MavenReferences are collected by the final output project, and reassessed. That is, each dependent Project within your .NET SDK-style solution contributes its MavenReferences to project(s) which include it, and each project makes its own dependency graph. Projects do not contribute their final built assemblies up. They only contribute their dependencies. Allowing each project in a complicated solution to make its own local conflict resolution attempt.

PackageReferences are supported in the same way. Projects which include MavenReferences do not pack the generated IKVM assemblies into their NuGet packages. Instead, they pack a partial POM file which only declares their dependencies. At build-time on the consumer's machine the final dependency graph is collected and generation happens. No generated assemblies are published to NuGet. This prevents possible conflicts between NuGet packages and incompatible base Java dependencies. For instance, if a package on nuget.org contained an actual copy of commons-logging.dll, there would be no guarentee that this assembly was generated with the correct options to support a different package on nuget.org that also depended on commons-logging. Since the final build machine is responsible for gathering and generating the dependencies, these conflicts become simple Maven conflicts: multiple packages dependending on differnet versions of the same thing, and Maven being unable to come up with a solution. Basically, not our problem.

MavenReferences fully support TFMs. A <MavenReference /> element can be conditional based on TFM. As the partial packaged POM-file is indexed by TFM in the generated .nupkg.

Assembly Generation

Assembly generation options are limited. Users are not allowed to customize the assembly name, version, or other optimization information that IKVM's compiler uses to produce the output. This is to ensure that NuGet packages that depend on generated assemblies do so under a certain set of assumptions that can continue to be met. As non-Java assemblies published in NuGet packages are compiled against on certain assembly names and version, allowing different people to rename or change assemblies away from their default would break the expectation that two NuGet packages that depend on the same Maven artifact resolve to the same assembly name.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETFramework 4.7.2

  • net6.0

  • net8.0

NuGet packages (6)

Showing the top 5 NuGet packages that depend on IKVM.Maven.Sdk:

Package Downloads
SaxonHE11s9apiExtensions

This is an extension method library to ease the use of an IKVM compiled version of Saxon HE 11 Java in .NET 6/8 and .NET framework 4.8 applications.

SaxonHE10Net31

This is the result of IKVM cross-compiling the Saxon HE 10.9 Java software to .NET 6 and .NET 8.

SaxonHE10Net31Api

This is a port of the Saxon 10.9 .NET framework API to NET 6 and .NET 8.

Lucene.Net.Analysis.OpenNLP

OpenNLP library integration for the Lucene.NET full-text search engine library from The Apache Software Foundation. Documentation: https://lucenenet.apache.org/docs/4.8.0-beta00017/api/analysis-opennlp/Lucene.Net.Analysis.OpenNlp.html This package is part of the Lucene.NET project: https://www.nuget.org/packages/Lucene.Net/4.8.0-beta00017

SaxonHE12s9apiExtensions

This is an extension method library to ease the use of an IKVM compiled version of Saxon HE 12 Java in .NET 8 or .NET 9 applications and .NET framework 4.8 applications.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on IKVM.Maven.Sdk:

Repository Stars
apache/lucenenet
Apache Lucene.NET
sergey-tihon/Stanford.NLP.NET
Stanford NLP for .NET
Version Downloads Last updated
1.8.2 9,853 8/29/2024
1.8.1 546 8/27/2024
1.8.0 9,133 8/19/2024
1.8.0-pre.1 403 8/14/2024
1.7.1 7,291 7/14/2024
1.7.0 261 7/12/2024
1.7.0-pre.2 183 7/11/2024
1.6.9 20,516 3/28/2024
1.6.8 8,654 2/5/2024
1.6.7 11,036 1/10/2024
1.6.6 606 1/7/2024
1.6.5 1,237 12/14/2023
1.6.4 528 12/12/2023
1.6.3 822 12/11/2023
1.6.2 4,361 12/4/2023
1.6.1 4,555 11/1/2023
1.6.0 740 10/30/2023
1.6.0-pre.2 289 10/29/2023
1.6.0-pre.1 611 10/11/2023
1.5.5 15,093 7/7/2023
1.5.4 4,001 6/7/2023
1.5.1 384 6/6/2023
1.5.0 506 6/4/2023
1.5.0-prerelease0002 513 6/2/2023
1.5.0-prerelease0001 432 6/1/2023
1.5.0-develop0024 556 5/4/2023
1.4.1 17,313 2/8/2023
1.4.1-prerelease0002 372 2/8/2023
1.4.1-prerelease0001 487 2/7/2023
1.4.0 686 2/7/2023
1.4.0-develop0031 548 2/7/2023
1.4.0-develop0014 483 2/7/2023
1.3.0 652 2/4/2023
1.3.0-develop0029 2,047 1/11/2023
1.2.0 2,004 12/8/2022
1.1.1 895 11/20/2022
1.1.0 686 11/17/2022
1.0.2 2,763 10/13/2022
1.0.2-prerelease0014 469 10/12/2022
1.0.1 2,812 7/26/2022
1.0.1-prerelease0037 407 7/25/2022
1.0.1-prerelease0034 487 7/25/2022
1.0.1-prerelease0020 544 7/25/2022
1.0.1-prerelease0009 571 7/25/2022
1.0.0 1,260 7/6/2022