Maven Repository - POM file for Inversion of Control hudson-inject 3.0.0 3.0.0

Summary

Hudson :: Inject (JSR-330 Strategy).

Contains the strategy to wire up JSR-330 components in Hudson..

Declaration

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

<dependency>
   <groupId>org.eclipse.hudson</groupId>
   <artifactId>hudson-inject</artifactId>
   <version>3.0.0</version>
</dependency>

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

Plugin

The following plugins are used in the hudson-inject-3.0.0.jar

  1. aspectj-maven-plugin
  2. maven-jar-plugin




Packages

The following packages are defined in the hudson-inject-3.0.0.jar

net.java.sezpoz
org.hudsonci.inject
org.hudsonci.inject.injecto
org.hudsonci.inject.injecto.internal
org.hudsonci.inject.internal
org.hudsonci.inject.internal.extension
org.hudsonci.inject.internal.plugin

POM File Source

Here is the content of the POM file.

<!-- **************************************************************************
#
# Copyright (c) 2010-2012 Sonatype, Inc.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors: 
#
#  Jason Dillon, Winston Prakash 
#        
#************************************************************************** --> 


<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>
    <groupId>org.eclipse.hudson</groupId>
    <artifactId>hudson-parent</artifactId>
    <version> 3.0.0</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>hudson-inject</artifactId>
  <version>3.0.0</version>
  <name>Hudson :: Inject (JSR-330 Strategy)</name>

  <description>
    Contains the strategy to wire up JSR-330 components in Hudson.
  </description>

  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>

    <dependency>
      <groupId>org.sonatype.sisu</groupId>
      <artifactId>sisu-inject-bean</artifactId>
    </dependency>

    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjrt</artifactId>
    </dependency>

    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jsr305</artifactId>
          <groupId>com.google.code.findbugs</groupId>
        </exclusion>
      </exclusions>
    </dependency>

    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
    </dependency>

    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
    </dependency>

    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>hudson-core</artifactId>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>aspectj-maven-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>compile</goal>
              <goal>test-compile</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

     <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

</project>