1 /* 2 * Licensed to the Apache Software Foundation (ASF) under one 3 * or more contributor license agreements. See the NOTICE file 4 * distributed with this work for additional information 5 * regarding copyright ownership. The ASF licenses this file 6 * to you under the Apache License, Version 2.0 (the 7 * "License"); you may not use this file except in compliance 8 * with the License. You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, 13 * software distributed under the License is distributed on an 14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 * KIND, either express or implied. See the License for the 16 * specific language governing permissions and limitations 17 * under the License. 18 */ 19 package org.apache.maven.model.root; 20 21 import javax.inject.Named; 22 import javax.xml.stream.XMLInputFactory; 23 import javax.xml.stream.XMLStreamException; 24 import javax.xml.stream.XMLStreamReader; 25 26 import java.io.IOException; 27 import java.io.InputStream; 28 import java.nio.file.Files; 29 import java.nio.file.Path; 30 31 @Named 32 public class DefaultRootLocator implements RootLocator { 33 34 public boolean isRootDirectory(Path dir) { 35 if (Files.isDirectory(dir.resolve(".mvn"))) { 36 return true; 37 } 38 // we're too early to use the modelProcessor ... 39 Path pom = dir.resolve("pom.xml"); 40 try (InputStream is = Files.newInputStream(pom)) { 41 XMLStreamReader parser = XMLInputFactory.newFactory().createXMLStreamReader(is); 42 if (parser.nextTag() == XMLStreamReader.START_ELEMENT 43 && parser.getLocalName().equals("project")) { 44 for (int i = 0; i < parser.getAttributeCount(); i++) { 45 if ("root".equals(parser.getAttributeLocalName(i))) { 46 return Boolean.parseBoolean(parser.getAttributeValue(i)); 47 } 48 } 49 } 50 } catch (IOException | XMLStreamException e) { 51 // The root locator can be used very early during the setup of Maven, 52 // even before the arguments from the command line are parsed. Any exception 53 // that would happen here should cause the build to fail at a later stage 54 // (when actually parsing the POM) and will lead to a better exception being 55 // displayed to the user, so just bail out and return false. 56 } 57 return false; 58 } 59 }