This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag slingstart-maven-plugin-1.3.0 in repository https://gitbox.apache.org/repos/asf/sling-slingstart-maven-plugin.git
commit c2041da7ecbc4f5e67e7aff06f1ae6feb0d008b3 Author: Carsten Ziegeler <[email protected]> AuthorDate: Fri Jul 17 06:11:30 2015 +0000 SLING-4889 : Provide a mojo to create a maven like structure of the referenced artifacts git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/tooling/maven/slingstart-maven-plugin@1691485 13f79535-47bb-0310-9956-ffa450edef68 --- .../sling/maven/slingstart/RepositoryMojo.java | 133 +++++++++++++++++++++ 1 file changed, 133 insertions(+) diff --git a/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java b/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java new file mode 100644 index 0000000..fa7301a --- /dev/null +++ b/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java @@ -0,0 +1,133 @@ +/* + * 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. + */ +package org.apache.sling.maven.slingstart; + +import java.io.File; +import java.io.IOException; + +import org.apache.commons.io.FileUtils; +import org.apache.maven.MavenExecutionException; +import org.apache.maven.artifact.Artifact; +import org.apache.maven.artifact.handler.manager.ArtifactHandlerManager; +import org.apache.maven.artifact.resolver.ArtifactResolver; +import org.apache.maven.plugin.MojoExecutionException; +import org.apache.maven.plugin.MojoFailureException; +import org.apache.maven.plugins.annotations.Component; +import org.apache.maven.plugins.annotations.Mojo; +import org.apache.maven.plugins.annotations.ResolutionScope; +import org.apache.sling.provisioning.model.ArtifactGroup; +import org.apache.sling.provisioning.model.Feature; +import org.apache.sling.provisioning.model.Model; +import org.apache.sling.provisioning.model.RunMode; + +/** + * Create a mvn repository structure from the artifacts + */ +@Mojo( + name = "repository", + requiresDependencyResolution = ResolutionScope.TEST, + threadSafe = true + ) +public class RepositoryMojo extends AbstractSlingStartMojo { + + private static final String DIR_NAME = "artifacts"; + + @Component + private ArtifactHandlerManager artifactHandlerManager; + + /** + * Used to look up Artifacts in the remote repository. + * + */ + @Component + private ArtifactResolver resolver; + + @Override + public void execute() throws MojoExecutionException, MojoFailureException { + this.getLog().info("Creating repository..."); + final File artifactDir = new File(this.project.getBuild().getDirectory(), DIR_NAME); + + final Model model = ProjectHelper.getEffectiveModel(this.project, getResolverOptions()); + + for(final Feature feature : model.getFeatures()) { + for(final RunMode runMode : feature.getRunModes()) { + for(final ArtifactGroup group : runMode.getArtifactGroups()) { + for(final org.apache.sling.provisioning.model.Artifact artifact : group ) { + copyArtifactToRepository(artifact, artifactDir); + } + } + } + } + try { + final org.apache.sling.provisioning.model.Artifact baseArtifact = ModelUtils.findBaseArtifact(model); + final org.apache.sling.provisioning.model.Artifact appArtifact = + new org.apache.sling.provisioning.model.Artifact(baseArtifact.getGroupId(), + baseArtifact.getArtifactId(), + baseArtifact.getVersion(), + BuildConstants.CLASSIFIER_APP, + BuildConstants.TYPE_JAR); + copyArtifactToRepository(appArtifact, artifactDir); + } catch ( final MavenExecutionException mee) { + throw new MojoExecutionException(mee.getMessage(), mee.getCause()); + } + + } + + /** + * Copy a single artifact to the repository + * @throws MojoExecutionException + */ + private void copyArtifactToRepository(final org.apache.sling.provisioning.model.Artifact artifact, + final File artifactDir) + throws MojoExecutionException { + + final StringBuilder artifactNameBuilder = new StringBuilder(); + artifactNameBuilder.append(artifact.getArtifactId()); + artifactNameBuilder.append('-'); + artifactNameBuilder.append(artifact.getVersion()); + if ( artifact.getClassifier() != null && artifact.getClassifier().length() > 0 ) { + artifactNameBuilder.append('-'); + artifactNameBuilder.append(artifact.getClassifier()); + } + artifactNameBuilder.append('.'); + artifactNameBuilder.append(artifact.getType()); + final String artifactName = artifactNameBuilder.toString(); + + final StringBuilder sb = new StringBuilder(); + sb.append(artifact.getGroupId().replace('.', File.separatorChar)); + sb.append(File.separatorChar); + sb.append(artifact.getArtifactId()); + sb.append(File.separatorChar); + sb.append(artifact.getVersion()); + sb.append(File.separatorChar); + sb.append(artifactName); + final String destPath = sb.toString(); + + final File artifactFile = new File(artifactDir, destPath); + artifactFile.getParentFile().mkdirs(); + + final Artifact source = ModelUtils.getArtifact(this.project, this.mavenSession, this.artifactHandlerManager, this.resolver, + artifact.getGroupId(), + artifact.getArtifactId(), artifact.getVersion(), artifact.getType(), artifact.getClassifier()); + + try { + FileUtils.copyFile(source.getFile(), artifactFile); + } catch (IOException e) { + throw new MojoExecutionException("Unable to copy artifact from " + source.getFile(), e); + } + } +} -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
