I have set up a multi-module project Here. It looks like the sample multi-module project from Jitpack. However, I cannot download single modules via maven, only the whole project. In other words, this works
<dependency>
<groupId>com.github.Schottky-spi</groupId>
<artifactId>Zener</artifactId>
<version>v3.2</version>
</dependency>
but this doesn't
<dependency>
<groupId>com.github.Schottky-spi.Zener</groupId>
<artifactId>zener-language</artifactId>
<version>v1.3.1</version>
</dependency>
Is there anything I'm missing? Maybe an error in the pom? I can build and depend on any dependency locally, but others can't use it All help is appreciated!