Maven Repository - POM file for Development plugin-support 1.0-alpha-1 1.0-alpha-1

Summary

Plugin Support.

Provides common support classes and components for plugins..

Declaration

Here is the list of declaration for plugin-support. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.codehaus.mojo</groupId>
   <artifactId>plugin-support</artifactId>
   <version>1.0-alpha-1</version>
</dependency>

If you think this Maven repository POM file listing for plugin-support is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Apache License.

Depends on

The plugin-support-1.0-alpha-1 has 7 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Data Structurecommons-lang 2.3
Commons.Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.
132
Logcommons-logging 1.0.4
Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.
273
JSPcommons-jexl 1.1
Jexl is an implementation of the JSTL Expression Language with extensions.
21
Buildmaven-project 2.0.4
This library is used to not only read Maven project object model files, but to assemble inheritence and to retrieve remote models as required.
27




Plugin

The following plugins are used in the plugin-support-1.0-alpha-1.jar

  1. maven-compiler-plugin
  2. maven-idea-plugin

Packages

The following packages are defined in the plugin-support-1.0-alpha-1.jar

org.codehaus.mojo.pluginsupport
org.codehaus.mojo.pluginsupport.ant
org.codehaus.mojo.pluginsupport.dependency
org.codehaus.mojo.pluginsupport.logging
org.codehaus.mojo.pluginsupport.util

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<!--
    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.
-->

<!-- $Id: pom.xml 3615 2007-03-14 19:10:07Z user57 $ -->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>
    
    <parent>
        <artifactId>mojo</artifactId>
        <groupId>org.codehaus.mojo</groupId>
        <version>13</version>
    </parent>

    <artifactId>plugin-support</artifactId>
    <name>Plugin Support</name>
    <version>1.0-alpha-1</version>
    <packaging>jar</packaging>
    
    <description>
        Provides common support classes and components for plugins.
    </description>
    
    <url>http://mojo.codehaus.org/plugin-support</url>
    
    
    
    <dependencies>
        <dependency>
            <groupId>ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.6.5</version>
        </dependency>

        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.3</version>
        </dependency>

        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.0.4</version>
        </dependency>

        <dependency>
            <groupId>commons-jexl</groupId>
            <artifactId>commons-jexl</artifactId>
            <version>1.1</version>
        </dependency>
        
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>2.0.4</version>
        </dependency>
        
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-project</artifactId>
            <version>2.0.4</version>
        </dependency>
        
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-artifact</artifactId>
            <version>2.0.4</version>
        </dependency>
    </dependencies>
    
    <build>
        <defaultGoal>install</defaultGoal>
        
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.4</source>
                    <target>1.4</target>
                </configuration>
            </plugin>
             
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-idea-plugin</artifactId>
                <configuration>
                    <jdkName>1.4</jdkName>
                    <jdkLevel>1.4</jdkLevel>
                </configuration>
            </plugin>
        </plugins>
    </build>
    

  <scm>
    <connection>scm:svn:https://svn.codehaus.org/mojo/tags/plugin-support-1.0-alpha-1</connection>
    <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/plugin-support-1.0-alpha-1</developerConnection>
    <url>https://svn.codehaus.org/mojo/tags/plugin-support-1.0-alpha-1</url>
  </scm>
</project>