Maven Repository - POM file for Development power_model 0.8.9 0.8.9

Summary

power_model.

Power model provides the ability to reflect and navigate on Java data models. It also provides some useful data types that can be used in data modelling..

Declaration

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

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

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





Depends on

The power_model-0.8.9 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
Developmentcommon 0.8.9
My common library, a mixed bag of re-usable utility code.
14

Plugin

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

  1. maven-jar-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>power_model</artifactId>
    <name>power_model</name>
    <version>0.8.9</version><!-- lojix.version -->

    <description>Power model provides the ability to reflect and navigate on Java data models. It also provides some useful data types that can be used in data modelling.</description>
    <url>https://www.thesett.com/build_reports/lojix/power_model</url>

    <packaging>jar</packaging>

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

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

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

        <dependency>
            <groupId>com.thesett</groupId>
            <artifactId>search</artifactId>
            <version>0.8.9</version><!-- lojix.version -->
        </dependency>

        <dependency>
            <groupId>com.thesett</groupId>
            <artifactId>state</artifactId>
            <version>0.8.9</version><!-- lojix.version -->
        </dependency>
        
        <!-- Test only dependencies. -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>

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

    </dependencies>

    <build>
        <plugins>

            <!-- Make the unit tests available to other modules. -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>test-jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

        </plugins>

    </build>

</project>