<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <!-- POM di Lab Lib CheckboxTree -->
    <artifactId>lablib-checkboxtree</artifactId>
    <version>3.2-SNAPSHOT</version>
    <packaging>jar</packaging>
    <groupId>it.cnr.imaa.essi</groupId>

    <!-- POM Relationships -->
    <parent>
        <groupId>it.cnr.imaa.essi</groupId>
        <artifactId>lablib-pom</artifactId>
        <version>3.0</version>
        <relativePath>../lablib-pom/pom.xml</relativePath>
    </parent>

<repositories>
<repository>
    <name>ESSI-Lab repository</name>
    <id>myID</id>
    <url>http://ulisse.pin.unifi.it:8081/nexus/content/groups/open.repos</url>
    <releases>
        <enabled>true</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>
</repositories>


    <!-- Project Information -->
    <name>CheckboxTree</name>
    <description><![CDATA[CheckboxTree is a Java Swing component that provides a Tree with checkboxes in
		every node. Checkboxes can toggle between two states (checked and unchecked). Disabling
		and greying checkboxes is also supported. The CheckboxTree API design is inspired by
		the JTree interface. In particular, the set of checked nodes is maintained by means of the TreeCheckingModel
		interface, closely modelled after the TreeSelectionModel interface.<br />
		For more information, see our
		<a href="http://www.javaworld.com/javaworld/jw-09-2007/jw-09-checkboxtree.html">JavaWorld article</a>.
		]]>
    </description>
    <url>http://zeus.pin.unifi.it/projectsSites/lablib-checkboxtree_snap</url>
    
    <issueManagement>
        <system>trac</system>
        <url>https://ulisse.pin.unifi.it/trac/lablib-checkboxtree</url>
    </issueManagement>

    <licenses>
        <license>
            <name>GNU General Public License</name>
            <url>http://zeus.pin.unifi.it/projectsSites/lablib-checkboxtree/COPYING</url>
            <distribution>manual</distribution>
            <comments>This License and any later version applies to the program.</comments>
        </license>
    </licenses>

    <developers>
        <developer>
            <id>bigagli</id>
            <name>Lorenzo Bigagli</name>
            <email>bigagli@imaa.cnr.it</email>
            <roles>
                <role>Project Manager</role>
                <role>Architect</role>
            </roles>
            <organization>IMAA-CNR</organization>
            <timezone>+1</timezone>
        </developer>
        <developer>
            <id>boldrini</id>
            <name>Enrico Boldrini</name>
            <email>boldrini@imaa.cnr.it</email>
            <roles>
                <role>Project Manager</role>
                <role>Architect</role>
            </roles>
            <organization>IMAA-CNR</organization>
            <timezone>+1</timezone>
        </developer>
    </developers>

    <contributors>
        <contributor>
            <name>Jens Happe</name>
            <email>jhappe@mdacorporation.com</email>
            <roles>
                <role>user</role>
            </roles>
            <organization>MacDonald, Dettwiler &amp; Associates Ltd.</organization>
            <timezone>-8</timezone>
        </contributor>
        <contributor>
            <name>Fabrizio Papeschi</name>
            <email>papeschi@imaa.cnr.it</email>
            <roles>
                <role>user</role>
            </roles>
            <organization>IMAA-CNR</organization>
            <timezone>+1</timezone>
        </contributor>
    </contributors>

    <!--	<properties>
		<trackingCode>
			<![CDATA[<script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol)
				? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" +
				gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script>
			<script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-394405-2");
				pageTracker._trackPageview(); } catch(err) {}</script>
				]]>
		</trackingCode>
		</properties>-->
    
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <distributionManagement>
        <site>
            <id>zeus-dav</id>
            <url>dav:${project.url}</url>
        </site>
    </distributionManagement>

    <scm>
        <connection>scm:svn:https://ulisse.pin.unifi.it/svn/lablib/trunk/lablib-checkboxtree</connection>
    </scm>

</project>

