You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2015/07/17 08:11:30 UTC

svn commit: r1691485 - /sling/trunk/tooling/maven/slingstart-maven-plugin/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java

Author: cziegeler
Date: Fri Jul 17 06:11:30 2015
New Revision: 1691485

URL: http://svn.apache.org/r1691485
Log:
SLING-4889 : Provide a mojo to create a maven like structure of the referenced artifacts

Added:
    sling/trunk/tooling/maven/slingstart-maven-plugin/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java   (with props)

Added: sling/trunk/tooling/maven/slingstart-maven-plugin/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/maven/slingstart-maven-plugin/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java?rev=1691485&view=auto
==============================================================================
--- sling/trunk/tooling/maven/slingstart-maven-plugin/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java (added)
+++ sling/trunk/tooling/maven/slingstart-maven-plugin/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java Fri Jul 17 06:11:30 2015
@@ -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);
+        }
+    }
+}

Propchange: sling/trunk/tooling/maven/slingstart-maven-plugin/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: sling/trunk/tooling/maven/slingstart-maven-plugin/src/main/java/org/apache/sling/maven/slingstart/RepositoryMojo.java
------------------------------------------------------------------------------
    svn:keywords = author date id revision rev url