130131132133134135136137138139
* @todo should not have to throw Exception */ public Project( Reader in ) throws Exception { MavenStaxReader reader = new MavenStaxReader(); model = reader.read( in ); resolveDependencies(); resolveVersions(); }
146147148149150151152153154155
* @todo should not have to throw Exception */ public Project( URL url ) throws Exception { MavenStaxReader reader = new MavenStaxReader(); model = reader.read( url.getFile() ); resolveDependencies(); resolveVersions(); }
162163164165166167168169170171
* @todo should not have to throw Exception */ public Project( String path ) throws Exception { MavenStaxReader reader = new MavenStaxReader(); model = reader.read( path ); resolveDependencies(); resolveVersions(); }