tjwatson commented on issue #1: WIP: FELIX-6228: Atomos maven plugin URL: https://github.com/apache/felix-atomos/pull/1#issuecomment-594123632 This is looking great so far. To get the web console to work I had to patch the `additionalResourceConfig.json` file. This is because the webconsole ends up looking for these res and templates resources using the class loader. ``` diff --git a/atomos.examples/atomos.examples.substrate.maven.equinox/additionalResourceConfig.json b/atomos.examples/atomos.examples.substrate.maven.equinox/additionalResourceConfig.json index 9656206..f6797ac 100644 --- a/atomos.examples/atomos.examples.substrate.maven.equinox/additionalResourceConfig.json +++ b/atomos.examples/atomos.examples.substrate.maven.equinox/additionalResourceConfig.json @@ -2,6 +2,12 @@ "resources": [ { "pattern": "META-INF/services/.*$" + }, + { + "pattern": "templates/.*$" + }, + { + "pattern": "res/.*$" } ] } ```
---------------------------------------------------------------- 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] With regards, Apache Git Services
