Skip to content

Content of file pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<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>it.tidalwave.thesefoolishthings</groupId>
        <artifactId>modules</artifactId>
        <version>3.2-ALPHA-1-SNAPSHOT</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <groupId>it.tidalwave.thesefoolishthings</groupId>
    <artifactId>it-tidalwave-role-spring</artifactId>
    <version>3.2-ALPHA-1-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>TheseFoolishThings - Roles (Spring)</name>
    <description>Specific Spring support for DCI roles</description>

    <properties>
        <!-- FIXME: push up -->
push up -->
<tft.test.listeners>it.tidalwave.util.test.TestLogger</tft.test.listeners> <!--<tft.test.logConfig></tft.test.logConfig>--> </properties> <dependencies> <dependency> <groupId>it.tidalwave.thesefoolishthings</groupId> <artifactId>it-tidalwave-util</artifactId> </dependency> <dependency> <groupId>it.tidalwave.thesefoolishthings</groupId> <artifactId>it-tidalwave-role</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <exclusions> <exclusion> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>it.tidalwave.thesefoolishthings</groupId> <artifactId>it-tidalwave-util-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>