Hi,

Can someone please confirm that the POM has not changed between 1.5.2 
and 1.5.3 save for version number.

i.e. that project dependencies et al. remain the same as 1.5.3 appears 
to only be 2 bug fixes.  I have inlined the 1.5.3 tweaked POM below for 
convenience with the version number being the only change.

Much Appreciated,

--Nikolaos


<?xml version="1.0" encoding="UTF-8"?>
<!-- This pom.xml is intended to be included with the 
stripes-x-bundle.jar that
  ++ is uploaded to the maven2 repository at iBiblio. It is not a complete
  ++ build environment for Stripes. If you intent to build Stripes locally
  ++ please use the ant build scripts provided (they're dead simple).
  -->
<project>
    <modelVersion>4.0.0</modelVersion>
    <groupId>net.sourceforge.stripes</groupId>
    <artifactId>stripes</artifactId>
    <version>1.5.3</version>
    <packaging>jar</packaging>
    <name>Stripes</name>
    <url>http://stripesframework.org/</url>
    <description>Stripes web framework jar, including tag 
library.</description>
    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <url>https://svn.sourceforge.net/svnroot/stripes</url>
    </scm>
    <issueManagement>
        <system>JIRA</system>
        <url>http://stripesframework.org/jira/browse/STS</url>
    </issueManagement>
    <dependencies>
        <dependency>
            <groupId>servlets.com</groupId>
            <artifactId>cos</artifactId>
            <version>05Nov2002</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.1.1</version>
            <exclusions>
                <exclusion>
                    <groupId>javax.servlet</groupId>
                    <artifactId>servlet-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>log4j</groupId>
                    <artifactId>log4j</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>logkit</groupId>
                    <artifactId>logkit</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>avalon-framework</groupId>
                    <artifactId>avalon-framework</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>mail</artifactId>
            <version>1.4</version>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.15</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>5.5</version>
            <scope>test</scope>
        </dependency>

        <!-- Spring is needed to compile the Spring support in Stripes, 
and from then on, only if
             you are actually using Spring in your own application.
        -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring</artifactId>
            <version>1.2.6</version>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>

        <!-- Commons fileupload and io are listed as optional 
dependencies for Stripes beceause
             they are needed to compile and use the commons version of 
the MultipartWrapper.
             However, the default implementation uses COS instead, so 
these jars are only
             necessary if you plan to use the commons version, or which 
to compiles Stripes
             from source.
        -->
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.2</version>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.2</version>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>
    </dependencies>
</project>


------------------------------------------------------------------------------
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to