Daniel-Dos opened a new pull request #111: URL: https://github.com/apache/deltaspike/pull/111
link to Jira: https://issues.apache.org/jira/browse/DELTASPIKE-1416 In https://deltaspike.apache.org/documentation/encryption.html demo how to run java -jar deltaspike-core-impl.jar encode -masterPassword myMasterPassword -masterSalt myMasterSalt more in your MANIFEST.MF does not contain the Main-Class that is in META-INF of the Core: https://github.com/apache/deltaspike/blob/master/deltaspike/core/impl/src/main/resources/META-INF/MANIFEST.MF to resolve, you must include a plugin: ``` <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
