You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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'
}
}
The text was updated successfully, but these errors were encountered:
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:
there probably should be
The text was updated successfully, but these errors were encountered: