Repository: maven Updated Branches: refs/heads/MNG-6298 [created] ddd63d9bf
[MNG-6296] 3.5.2: ClassNotFoundException: javax.annotation.security.RolesAllowed Adding exportedPackage to find class: javax.annotation.security.RolesAllowed First maven commit :) Works but might be deeper issue Signed-off-by: Karl Heinz Marbaise <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/maven/repo Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/ddd63d9b Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/ddd63d9b Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/ddd63d9b Branch: refs/heads/MNG-6298 Commit: ddd63d9bffdf996c44909b6b0c5f58aa55b16fe0 Parents: 6b83f7e Author: Bengt Söderberg <[email protected]> Authored: Mon Nov 27 19:19:48 2017 +0100 Committer: Karl Heinz Marbaise <[email protected]> Committed: Sun Dec 31 13:12:37 2017 +0100 ---------------------------------------------------------------------- maven-core/src/main/resources/META-INF/maven/extension.xml | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven/blob/ddd63d9b/maven-core/src/main/resources/META-INF/maven/extension.xml ---------------------------------------------------------------------- diff --git a/maven-core/src/main/resources/META-INF/maven/extension.xml b/maven-core/src/main/resources/META-INF/maven/extension.xml index c5f40b5..6329aaa 100644 --- a/maven-core/src/main/resources/META-INF/maven/extension.xml +++ b/maven-core/src/main/resources/META-INF/maven/extension.xml @@ -100,6 +100,7 @@ under the License. <!-- javax.annotation (JSR-250) --> <exportedPackage>javax.annotation.*</exportedPackage> + <exportedPackage>javax.annotation.security.*</exportedPackage> <!-- | We may potentially want to export these, but right now I'm not sure that anything Guice specific needs
