8000 Aeron-archive JAR file does not contain SBE-generated classes · Issue #416 · aeron-io/aeron · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Aeron-archive JAR file does not contain SBE-generated classes #416
Closed
@kudryashov

Description

@kudryashov

aeron-archive JAR (I checked versions 1.4.1, 1.5.0, 1.5.1) does not contain the SBE-generated classes, such as io.aeron.archive.codecs.RecordingDescriptorDecoder. This makes aeron-archive not usable out of the box - one has to use the aeron-all artifact that luckily contains everything.

It looks like this is due to a typo in the build.gradle: in the aeron-archive project configuration instead of:

    jar {
        from("${buildDir}/classes/generated") {
            include '**/*.class'
        }
    }

there probably should be

    jar {
        from("${buildDir}/classes/java/generated") {
            include '**/*.class'
        }
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0