io.sarl.maven.compiler.MavenProjectResourceSetProvider Maven / Gradle / Ivy
/*
* $Id: io/sarl/maven/compiler/MavenProjectResourceSetProvider.java v0.8.4 2018-10-09 18:05:05$
*
* SARL is an general-purpose agent programming language.
* More details on http://www.sarl.io
*
* Copyright (C) 2014-2018 the original authors or authors.
*
* Licensed 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.
*/
package io.sarl.maven.compiler;
import javax.inject.Provider;
import org.apache.maven.project.MavenProject;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.xtext.resource.XtextResourceSet;
/** provider of resource sets when comilig with Maven.
*
* @author Stéphane Galland
* @version 0.8.4 2018-10-09 18:05:05
* @mavengroupid io.sarl.maven
* @mavenartifactid sarl-maven-plugin
*/
class MavenProjectResourceSetProvider implements Provider {
private MavenProject project;
/** Constructor.
*
* @param project the compiled project.
*/
MavenProjectResourceSetProvider(MavenProject project) {
super();
this.project = project;
}
@Override
public ResourceSet get() {
final ResourceSet rs = new XtextResourceSet();
MavenProjectAdapter.install(rs, this.project);
return rs;
}
}