/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.module.artifact.classloader; /** * This class has the constants of the mule maven plugin used to package artifacts. * <p> * During deployment with maven packaged artifacts, the mule maven plugin coordinates are used to locate the plugin configuration * within the artifact pom to search for the declared shared libraries that will be exported to other plugins within the * application. * * @since 4.0 */ public interface MuleMavenPlugin { String MULE_MAVEN_PLUGIN_GROUP_ID = "org.mule.tools.maven"; String MULE_MAVEN_PLUGIN_ARTIFACT_ID = "mule-maven-plugin"; }