Hi Alex,
This is the structure of the zip you sent:
|-- New\ folder
| |-- assemblyDescriptor.xml
| |-- descriptor.json
| |-- Dockerfile
| |-- Makefile
| `-- pom.xmlIf you're writing a Java component, you need to have a directory structure that is similar to the one shown
here.
You need to create the structure yourself.
You're missing a "plugin-files" folder. That should contain a "descriptor" folder, and that should contain your "descriptor.json". Again, you need to create those folders yourself before you do the Docker build.
Also, you're missing a "src" folder, which should include your Java code.
The top-level directory should be the name of your component. Here I see "New folder".
We don't use a Makefile to build our Java components, so that file seems out of place. This is the Maven command that performs the build:
mvn package -Dmpf.assembly.format=dir That uses "assemblyDescriptor.xml" and "pom.xml".
- Jeff