emailer/pom.xml
branchscala-emailer
changeset 153 ac818c32c6e9
child 154 d9d5376d5f23
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/emailer/pom.xml	Thu Nov 26 20:06:56 2009 +0100
     1.3 @@ -0,0 +1,98 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     1.6 +    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     1.7 +  <modelVersion>4.0.0</modelVersion>
     1.8 +  <parent>
     1.9 +    <artifactId>all-quoridor</artifactId>
    1.10 +    <groupId>org.apidesign</groupId>
    1.11 +    <version>1.0</version>
    1.12 +  </parent>
    1.13 +  <groupId>org.apidesign</groupId>
    1.14 +  <artifactId>emailer</artifactId>
    1.15 +  <version>1.0</version>
    1.16 +  <inceptionYear>2008</inceptionYear>
    1.17 +  <build>
    1.18 +    <sourceDirectory>src/main/scala</sourceDirectory>
    1.19 +    <testSourceDirectory>src/test/scala</testSourceDirectory>
    1.20 +    <plugins>
    1.21 +      <plugin>
    1.22 +        <groupId>org.scala-tools</groupId>
    1.23 +        <artifactId>maven-scala-plugin</artifactId>
    1.24 +        <executions>
    1.25 +          <execution>
    1.26 +            <goals>
    1.27 +              <goal>compile</goal>
    1.28 +              <goal>testCompile</goal>
    1.29 +            </goals>
    1.30 +          </execution>
    1.31 +        </executions>
    1.32 +        <configuration>
    1.33 +          <scalaVersion>${scala.version}</scalaVersion>
    1.34 +          <args>
    1.35 +            <arg>-target:jvm-1.5</arg>
    1.36 +          </args>
    1.37 +        </configuration>
    1.38 +      </plugin>
    1.39 +    </plugins>
    1.40 +  </build>
    1.41 +  <repositories>
    1.42 +    <repository>
    1.43 +      <id>scala-tools.org</id>
    1.44 +      <name>Scala-Tools Maven2 Repository</name>
    1.45 +      <url>http://scala-tools.org/repo-releases</url>
    1.46 +    </repository>
    1.47 +  </repositories>
    1.48 +  <pluginRepositories>
    1.49 +    <pluginRepository>
    1.50 +      <id>scala-tools.org</id>
    1.51 +      <name>Scala-Tools Maven2 Repository</name>
    1.52 +      <url>http://scala-tools.org/repo-releases</url>
    1.53 +    </pluginRepository>
    1.54 +  </pluginRepositories>
    1.55 +  <dependencies>
    1.56 +    <dependency>
    1.57 +      <groupId>org.scala-lang</groupId>
    1.58 +      <artifactId>scala-library</artifactId>
    1.59 +      <version>${scala.version}</version>
    1.60 +    </dependency>
    1.61 +    <dependency>
    1.62 +      <groupId>junit</groupId>
    1.63 +      <artifactId>junit</artifactId>
    1.64 +      <version>4.4</version>
    1.65 +      <scope>test</scope>
    1.66 +    </dependency>
    1.67 +    <dependency>
    1.68 +      <groupId>org.specs</groupId>
    1.69 +      <artifactId>specs</artifactId>
    1.70 +      <version>1.2.5</version>
    1.71 +      <scope>test</scope>
    1.72 +    </dependency>
    1.73 +    <!--
    1.74 +    <dependency>
    1.75 +      <groupId>javax.mail</groupId>
    1.76 +      <artifactId>mail</artifactId>
    1.77 +      <version>1.4.2</version>
    1.78 +    </dependency>
    1.79 +    -->
    1.80 +  </dependencies>
    1.81 +  <reporting>
    1.82 +    <plugins>
    1.83 +      <plugin>
    1.84 +        <groupId>org.scala-tools</groupId>
    1.85 +        <artifactId>maven-scala-plugin</artifactId>
    1.86 +        <configuration>
    1.87 +          <scalaVersion>${scala.version}</scalaVersion>
    1.88 +        </configuration>
    1.89 +      </plugin>
    1.90 +    </plugins>
    1.91 +  </reporting>
    1.92 +  <properties>
    1.93 +    <scala.version>2.7.0</scala.version>
    1.94 +  </properties>
    1.95 +    <name>Emails lazy players</name>
    1.96 +    <packaging>jar</packaging>
    1.97 +    <description>Obtains list of players without any activity for a while and sends them an email.</description>
    1.98 +</project>
    1.99 +
   1.100 +
   1.101 +