Subversion Repositories aduna

[/] [info.aduna/] [commons/] [iteration/] [trunk/] [pom.xml] - Rev 11015

Compare with Previous | Blame | View Log

<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>info.aduna.commons</groupId>
        <artifactId>aduna-commons</artifactId>
        <version>20</version>
        <relativePath>../../pom.xml</relativePath>
    </parent>

    <artifactId>aduna-commons-iteration</artifactId>
    <version>2.11.0-SNAPSHOT</version>

    <name>Aduna Commons: Iteration</name>
    <description>Iterations and iterators for various purposes.</description>

    <organization>
        <name>Aduna</name>
        <url>http://www.aduna-software.com/</url>
    </organization>

    <licenses>
        <license>
            <name>Aduna BSD license</name>
            <url>http://repo.aduna-software.org/legal/aduna-bsd.txt</url>
            <distribution>repo</distribution>
            <comments>A BSD-style OSS license</comments>
        </license>
    </licenses>

    <dependencies>
        <dependency>
            <groupId>info.aduna.commons</groupId>
            <artifactId>aduna-commons-concurrent</artifactId>
            <version>2.7.0</version>
        </dependency>

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

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>  
                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
                    </archive> 
                </configuration>
            </plugin>  
            <plugin>   
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Export-Package>info.aduna.iteration</Export-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <scm>
        <connection>scm:svn:http://repo.aduna-software.org/svn/info.aduna/commons/iteration/trunk</connection>
        <developerConnection>scm:svn:https://repo.aduna-software.org/svn/info.aduna/commons/iteration/trunk</developerConnection>
        <url>http://repo.aduna-software.org/websvn/listing.php?repname=aduna&amp;path=/info.aduna/commons/iteration/trunk/</url>
    </scm>

</project>

Compare with Previous | Blame