------ Introspecting a class loader ------ Mark Hobson ------ 19 May 2008 ------ ~~ Licensed to the Apache Software Foundation (ASF) under one ~~ or more contributor license agreements. See the NOTICE file ~~ distributed with this work for additional information ~~ regarding copyright ownership. The ASF licenses this file ~~ to you under the Apache License, Version 2.0 (the ~~ "License"); you may not use this file except in compliance ~~ with the License. You may obtain a copy of the License at ~~ ~~ http://www.apache.org/licenses/LICENSE-2.0 ~~ ~~ Unless required by applicable law or agreed to in writing, ~~ software distributed under the License is distributed on an ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~~ KIND, either express or implied. See the License for the ~~ specific language governing permissions and limitations ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: ~~ http://maven.apache.org/doxia/references/apt-format.html Introspecting a class loader Maven Runtime can introspect a class loader to obtain metadata for each Maven project accessible within it. * Using project properties To obtain a list of <<<{{{../apidocs/org/apache/maven/shared/runtime/MavenProjectProperties.html}MavenProjectProperties}}>>> instances for each Maven project accessible within a specified class loader: --- /** * @component */ private MavenRuntime runtime; public void processProjects() throws MavenRuntimeException { ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); List projects = runtime.getProjectsProperties( classLoader ); // process projects } --- * Using project XML To obtain a list of <<<{{{http://maven.apache.org/ref/3.0.4/maven-core/apidocs/org/apache/maven/project/MavenProject.html}MavenProject}}>>> instances for each Maven project accessible within a specified class loader: --- /** * @component */ private MavenRuntime runtime; public void processProjects() throws MavenRuntimeException { ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); List projects = runtime.getProjects( classLoader ); // process projects } --- * Sorting projects by dependency order When obtaining Maven metadata using project XML, the resultant <<>> instances can be sorted by dependency order. To obtain a list of <<>> instances for each Maven project accessible within a specified class loader ordered by their dependencies: --- /** * @component */ private MavenRuntime runtime; public void processProjects() throws MavenRuntimeException { ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); List projects = runtime.getSortedProjects( classLoader ); // process projects } --- Note that project properties cannot be sorted by dependency order since they do not contain any dependency information.