Hello,
I’m trying to deploy a new test module generated with the opc-ua-driver-archetype.
The problem comes posting the modl to the gateway using the post goal…
I get; Unable to load hook class “it.italprogetti.DriverHook”.
Looking the .modl it seems the DriverHook class is placed in the right path(as specified in the pom.xml)
this is a part of the pom.xml
        <configuration>
                    <projectScopes>
                        <projectScope>
                            <name>test-driver</name>
                            <scope>G</scope>
                        </projectScope>
                    </projectScopes>
                    <moduleId>it.italprogetti.test-driver</moduleId>
                    <moduleName>${project.parent.name}</moduleName>
                    <moduleDescription>${project.description}</moduleDescription>
                    <moduleVersion>1.8.0</moduleVersion>
                    <requiredIgnitionVersion>7.7.0</requiredIgnitionVersion>
                    <requiredFrameworkVersion>6</requiredFrameworkVersion>
                    <hooks>
                        <hook>
                            <scope>G</scope>
                            <hookClass>it.italprogetti.DriverHook</hookClass>
                        </hook>
                    </hooks>
                </configuration>
Where is the problem?
Thanks,
Federico