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