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>
<Aliases></Aliases>
</MavenReference>
</ItemGroup>Two Java libraries can export types with identical fully qualified names. Set Aliases on a MavenReference to place
the generated assembly behind an extern alias, exactly as you would for a normal Reference:
<ItemGroup>
<MavenReference Include="org.foo.bar:foo-lib:1.2.3">
<Aliases>foolib</Aliases>
</MavenReference>
</ItemGroup>extern alias foolib;The alias is applied only to the artifact named by the reference, and not to its transitive dependencies: aliasing the
whole tree would remove every assembly in it from the global namespace. Multiple aliases may be given as a comma
separated list. Note that an assembly placed behind an alias is no longer reachable from the global namespace unless
global is among its aliases.
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. 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. Until a fix is published, the missing dependency can be declared locally through the Dependencies metadata.
Additional dependencies can be declared upon a MavenReference through the Dependencies metadata. This exists to
work around artifacts whose published POM underspecifies their dependencies: since IKVM statically compiles each
artifact, classes referenced from an undeclared dependency would otherwise compile into hard-throwing stubs.
Each entry declares a dependency of the referenced artifact:
<ItemGroup>
<MavenReference Include="com.jayway.jsonpath:json-path" Version="2.10.0">
<Dependencies>com.fasterxml.jackson.core:jackson-databind:2.18.2</Dependencies>
</MavenReference>
</ItemGroup>A dependency can also be declared upon an artifact within the dependency tree of the reference, addressed by a path of
groupId:artifactId[:version] segments separated by /. The final segment is the dependency to declare: an artifact
coordinate in the standard Maven form groupId:artifactId[:extension[:classifier]]:version, optionally followed by
comma-separated key=value qualifiers assigning the attributes a coordinate cannot express: scope=<scope> and
optional=true. Multiple entries are separated by ;.
<ItemGroup>
<MavenReference Include="org.apache.calcite:calcite-core" Version="1.43.0">
<Dependencies>com.jayway.jsonpath:json-path/com.fasterxml.jackson.core:jackson-databind:2.18.2,optional=true</Dependencies>
</MavenReference>
</ItemGroup>Declarations are additive only: dependencies can be added, but never removed, since other artifacts in the graph may rely on them. The declared dependency joins dependency resolution alongside the rest of the graph, participating in version mediation, and is wired as a reference of the addressed artifact. The path acts as a precondition: if it does not match the resolved dependency graph, the declaration does not apply and a warning is raised.
Declared dependencies are preserved in the partial POM packed into NuGet packages, nested beneath the corresponding
dependency node in the http://ikvm.org/POM-EXT/1.0.0 namespace, and therefore flow to consuming projects like any
other dependency information.
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 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.