Maven Repository - POM file for Development rocoto 6.2 6.2

Summary

99soft :: Rocoto.

Add some spice to Google Guice through configuration files!.

Declaration

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

<dependency>
   <groupId>org.99soft.guice</groupId>
   <artifactId>rocoto</artifactId>
   <version>6.2</version>
</dependency>

If you think this Maven repository POM file listing for rocoto 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 rocoto-6.2 has 3 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
Inversion of Controljavax.inject 1
The javax.inject API
539
JUnitjunit 4.10
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1957




Depended by

The following table lists the most popular artifacts which are depending on rocoto-6.2. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
JEEjclouds-core 1.7.1
Core components to access jclouds services
8
JEEjclouds-core 1.6.0-rc.5
Core components to access jclouds services
28
JEEjclouds-core 1.6.0-rc.4
Core components to access jclouds services
24
JEEjclouds-core 1.6.0-rc.3
Core components to access jclouds services
24

Plugin

The following plugins are used in the rocoto-6.2.jar

  1. maven-bundle-plugin

Packages

The following packages are defined in the rocoto-6.2.jar

org.nnsoft.guice.rocoto
org.nnsoft.guice.rocoto.configuration
org.nnsoft.guice.rocoto.configuration.binder
org.nnsoft.guice.rocoto.converters
org.nnsoft.guice.rocoto.variables




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright 2009-2012 The 99 Software Foundation

  Licensed 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.
-->
<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.99soft</groupId>
    <artifactId>oss-parent</artifactId>
    <version>9</version>
  </parent>

  <groupId>org.99soft.guice</groupId>
  <artifactId>rocoto</artifactId>
  <version>6.2</version>
  <packaging>bundle</packaging>

  <name>99soft :: Rocoto</name>
  <description>Add some spice to Google Guice through configuration files!</description>
  <url>http://99soft.github.com/rocoto/</url>
  <inceptionYear>2010</inceptionYear>

  <contributors>
    <contributor>
      <name>Cody Ray</name>
      <email>cray at brighttag dot com</email>
    </contributor>

    <contributor>
      <name>Daniel Manzke</name>
      <email>daniel dot manzke at googlemail dot com</email>
      <url>http://devsurf.wordpress.com/</url>
    </contributor>

    <contributor>
      <name>Ioannis Canellos</name>
      <email>iocanel at googlemail dot com</email>
    </contributor>

    <contributor>
      <name>Marzia Forli</name>
      <email>marzia dot forli at yahoo dot com</email>
    </contributor>

    <contributor>
      <name>Picpoc</name>
    </contributor>

    <contributor>
      <name>Stuart McCulloch</name>
      <email>mcculls at gmail dot com</email>
    </contributor>
  </contributors>

  <mailingLists>
    <mailingList>
      <name>rocoto</name>
      <archive>http://groups.google.com/group/rocoto/topics</archive>
      <subscribe>http://groups.google.com/group/rocoto/subscribe</subscribe>
      <unsubscribe>http://groups.google.com/group/rocoto/subscribe</unsubscribe>
      <post>rocoto@googlegroups.com</post>
    </mailingList>
  </mailingLists>

  <scm>
    <url>http://github.com/99soft/rocoto</url>
    <connection>scm:git:ssh://github.com/99soft/rocoto.git</connection>
    <developerConnection>scm:git:git+ssh://git@github.com/99soft/rocoto.git</developerConnection>
    <tag>rocoto-6.2</tag>
  </scm>
  <issueManagement>
    <system>GitHub Issue Management</system>
    <url>https://github.com/99soft/Rocoto/issues</url>
  </issueManagement>
  <distributionManagement>
    <site>
      <id>github</id>
      <url>gitsite:git@github.com/99soft/rocoto.git</url>
    </site>
  </distributionManagement>

  <properties>
    <project.previousVersion>6.1</project.previousVersion>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>2.3.6</version>
        <extensions>true</extensions>
        <inherited>true</inherited>
        <configuration>
          <instructions>
            <Bundle-Name>${project.name}</Bundle-Name>
            <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
            <Export-Package>org.nnsoft.guice*;version="${project.version}"</Export-Package>
            <Import-Package>
              javax.*,
              !com.google.inject*,
              *
            </Import-Package>
            <Fragment-Host>com.google.inject;bundle-version="[3.0.0,4)"</Fragment-Host>
          </instructions>
          <unpackBundle>true</unpackBundle>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>javax.inject</groupId>
      <artifactId>javax.inject</artifactId>
      <version>1</version>
      <scope>compile</scope>
    </dependency>

    <dependency>
      <groupId>com.google.inject</groupId>
      <artifactId>guice</artifactId>
      <version>3.0</version>
      <scope>compile</scope>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>