emailer/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 26 Nov 2009 20:20:33 +0100
branchscala-emailer
changeset 154 d9d5376d5f23
parent 153 ac818c32c6e9
child 157 1f49195b49e8
permissions -rw-r--r--
Really trying to send the emails
     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     <dependency>
    78       <groupId>javax.mail</groupId>
    79       <artifactId>mail</artifactId>
    80       <version>1.4.1</version>
    81     </dependency>
    82   </dependencies>
    83   <reporting>
    84     <plugins>
    85       <plugin>
    86         <groupId>org.scala-tools</groupId>
    87         <artifactId>maven-scala-plugin</artifactId>
    88         <configuration>
    89           <scalaVersion>${scala.version}</scalaVersion>
    90         </configuration>
    91       </plugin>
    92     </plugins>
    93   </reporting>
    94   <properties>
    95     <scala.version>2.7.0</scala.version>
    96   </properties>
    97     <name>Emails lazy players</name>
    98     <packaging>jar</packaging>
    99     <description>Obtains list of players without any activity for a while and sends them an email.</description>
   100 </project>
   101 
   102 
   103