Maven Repository - POM file for Library configurator 0.8.9 0.8.9

Summary

configurator.

Configurator Bean library..

Declaration

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

<dependency>
   <groupId>com.thesett</groupId>
   <artifactId>configurator</artifactId>
   <version>0.8.9</version>
</dependency>

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

Depends on

The configurator-0.8.9 has 2 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
Developmentcommon 0.8.9
My common library, a mixed bag of re-usable utility code.
14
Librarybase 0.8.9
My base library, a mixed bag of re-usable utility code.
8




Plugin

The following plugins are used in the configurator-0.8.9.jar

  1. maven-jaxb2-plugin

POM File Source

Here is the content of the POM file.

<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>

    <groupId>com.thesett</groupId>
    <artifactId>configurator</artifactId>
    <name>configurator</name>
    <version>0.8.9</version><!-- jenerator.version -->

    <description>Configurator Bean library.</description>
    <url>http://www.thesett.com/configurator</url>

    <packaging>jar</packaging>

    <properties>
        <topdir>${basedir}/..</topdir>
    </properties>

    <parent>
        <groupId>com.thesett</groupId>
        <artifactId>jenerator_build</artifactId>
        <version>0.8.9</version><!-- jenerator.version -->
        <relativePath>../pom.xml</relativePath>
    </parent>

    <dependencies>
        <dependency>
            <groupId>com.thesett</groupId>
            <artifactId>common</artifactId>
            <version>0.8.9</version><!-- jenerator.version -->
        </dependency>

        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
        </dependency>

        <!-- JAXB 2.0 RI libraries. Needed to run the XJC at build time, and at run time. Should be bundled in .ears -->
        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jsr173_api</artifactId>
        </dependency>

        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
        </dependency>

        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-impl</artifactId>
        </dependency>

        <!-- Container provided dependencies. -->
        <dependency>
            <groupId>servletapi</groupId>
            <artifactId>servletapi</artifactId>
        </dependency>

        <!-- Test only dependencies. -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.thesett</groupId>
            <artifactId>base</artifactId>
            <version>0.8.9</version><!-- base.version -->
            <scope>test</scope>
        </dependency>        
    </dependencies>

    <build>
        <plugins>

            <!-- Generates the bean model for the configurator setup from its schema. -->
            <plugin>
                <groupId>org.jvnet.jaxb2.maven2</groupId>
                <artifactId>maven-jaxb2-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>

        <!-- Ensure that the example configuration set up is included in the test classpath. -->
        <testResources>
            <testResource>
                <directory>src/unittests</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </testResource>
        </testResources>
    </build>

</project>