emailer/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 26 Nov 2009 20:06:56 +0100
branchscala-emailer
changeset 153 ac818c32c6e9
child 154 d9d5376d5f23
permissions -rw-r--r--
Scala version of an emailer. So far it finds the lazy players. It needs to send them email yet.
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <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"
     3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4   <modelVersion>4.0.0</modelVersion>
     5   <parent>
     6     <artifactId>all-quoridor</artifactId>
     7     <groupId>org.apidesign</groupId>
     8     <version>1.0</version>
     9   </parent>
    10   <groupId>org.apidesign</groupId>
    11   <artifactId>emailer</artifactId>
    12   <version>1.0</version>
    13   <inceptionYear>2008</inceptionYear>
    14   <build>
    15     <sourceDirectory>src/main/scala</sourceDirectory>
    16     <testSourceDirectory>src/test/scala</testSourceDirectory>
    17     <plugins>
    18       <plugin>
    19         <groupId>org.scala-tools</groupId>
    20         <artifactId>maven-scala-plugin</artifactId>
    21         <executions>
    22           <execution>
    23             <goals>
    24               <goal>compile</goal>
    25               <goal>testCompile</goal>
    26             </goals>
    27           </execution>
    28         </executions>
    29         <configuration>
    30           <scalaVersion>${scala.version}</scalaVersion>
    31           <args>
    32             <arg>-target:jvm-1.5</arg>
    33           </args>
    34         </configuration>
    35       </plugin>
    36     </plugins>
    37   </build>
    38   <repositories>
    39     <repository>
    40       <id>scala-tools.org</id>
    41       <name>Scala-Tools Maven2 Repository</name>
    42       <url>http://scala-tools.org/repo-releases</url>
    43     </repository>
    44   </repositories>
    45   <pluginRepositories>
    46     <pluginRepository>
    47       <id>scala-tools.org</id>
    48       <name>Scala-Tools Maven2 Repository</name>
    49       <url>http://scala-tools.org/repo-releases</url>
    50     </pluginRepository>
    51   </pluginRepositories>
    52   <dependencies>
    53     <dependency>
    54       <groupId>org.scala-lang</groupId>
    55       <artifactId>scala-library</artifactId>
    56       <version>${scala.version}</version>
    57     </dependency>
    58     <dependency>
    59       <groupId>junit</groupId>
    60       <artifactId>junit</artifactId>
    61       <version>4.4</version>
    62       <scope>test</scope>
    63     </dependency>
    64     <dependency>
    65       <groupId>org.specs</groupId>
    66       <artifactId>specs</artifactId>
    67       <version>1.2.5</version>
    68       <scope>test</scope>
    69     </dependency>
    70     <!--
    71     <dependency>
    72       <groupId>javax.mail</groupId>
    73       <artifactId>mail</artifactId>
    74       <version>1.4.2</version>
    75     </dependency>
    76     -->
    77   </dependencies>
    78   <reporting>
    79     <plugins>
    80       <plugin>
    81         <groupId>org.scala-tools</groupId>
    82         <artifactId>maven-scala-plugin</artifactId>
    83         <configuration>
    84           <scalaVersion>${scala.version}</scalaVersion>
    85         </configuration>
    86       </plugin>
    87     </plugins>
    88   </reporting>
    89   <properties>
    90     <scala.version>2.7.0</scala.version>
    91   </properties>
    92     <name>Emails lazy players</name>
    93     <packaging>jar</packaging>
    94     <description>Obtains list of players without any activity for a while and sends them an email.</description>
    95 </project>
    96 
    97 
    98