<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright 2013 The ActFramework Starters Project
  ~
  ~ The ActFramework maven parent Project licenses this file to you under the Apache License,
  ~ version 2.0 (the "License"); you may not use this file except in compliance
  ~ with the License. You may obtain a copy of the License at:
  ~
  ~   http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  ~ License for the specific language governing permissions and limitations
  ~ under the License.  
  -->
<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>

  <artifactId>act-starters</artifactId>
  <packaging>pom</packaging>
  <version>1.8.8.1</version>

  <name>ActFramework Starters</name>
  <description>ActFramework Starters</description>
  <inceptionYear>2018</inceptionYear>

  <parent>
    <groupId>org.actframework</groupId>
    <artifactId>parent</artifactId>
    <version>1.8.8-RC4</version>
  </parent>

  <properties>
    <java.version>1.7</java.version>
    <maven.compiler.source>${java.version}</maven.compiler.source>
    <maven.compiler.target>${java.version}</maven.compiler.target>
    <main.basedir>${basedir}</main.basedir>
    <scm.url>git@github.com:actframework/act-starters.git</scm.url>
    <app.entry>ToBeOverwritten</app.entry>

    <act-aaa.version>1.4.2</act-aaa.version>
    <act-beetl.version>1.4.1</act-beetl.version>
    <act-beetlsql.version>1.4.5</act-beetlsql.version>
    <act-e2e.version>0.0.1</act-e2e.version>
    <act-ebean-java7.version>1.6.1</act-ebean-java7.version>
    <act-ebean.version>1.6.4</act-ebean.version>
    <act-eclipselink.version>1.2.3</act-eclipselink.version>
    <act-excel.version>1.4.3</act-excel.version>
    <act-freemarker.version>1.3.2</act-freemarker.version>
    <act-hibernate.version>1.2.3</act-hibernate.version>
    <act-jax-rs.version>1.0.2</act-jax-rs.version>
    <act-morphia.version>1.5.0</act-morphia.version>
    <act-mustache.version>1.4.2</act-mustache.version>
    <act-social-link.version>0.12.2</act-social-link.version>
    <act-storage.version>0.13.2</act-storage.version>
    <act-thymeleaf.version>1.3.2</act-thymeleaf.version>
    <act-velocity.version>1.3.2</act-velocity.version>

    <!-- donot update h2 to 1.4.197, it does not run on java7 -->
    <h2.version>1.4.196</h2.version>
    <HikariCP-java7.version>2.4.13</HikariCP-java7.version>
    <HikariCP.version>2.7.9</HikariCP.version>
    <druid.version>1.1.9</druid.version>
  </properties>

  <scm>
    <connection>scm:git:${scm.url}</connection>
    <developerConnection>scm:git:${scm.url}</developerConnection>
    <url>${scm.url}</url>
  </scm>

  <issueManagement>
    <system>github</system>
    <url>https://github.com/actframework/act-starters/issues</url>
  </issueManagement>

  <modules>
    <module>act-starter-parent</module>
    <module>act-starter-beetl</module>
    <module>act-starter-ebean-aaa-java7</module>
    <module>act-starter-ebean-all-java7</module>
    <module>act-starter-ebean-aaa</module>
    <module>act-starter-ebean-all</module>
    <module>act-starter-eclipselink-aaa</module>
    <module>act-starter-eclipselink-all</module>
    <module>act-starter-excel</module>
    <module>act-starter-freemarker</module>
    <module>act-starter-hibernate-aaa</module>
    <module>act-starter-hibernate-all</module>
    <module>act-starter-morphia-aaa</module>
    <module>act-starter-morphia-all</module>
    <module>act-starter-mustache</module>
    <module>act-starter-velocity</module>
    <module>act-starter-thymeleaf</module>
  </modules>

  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.6.0</version>
        <configuration>
          <executable>java</executable>
          <arguments>
            <argument>-Xms256m</argument>
            <argument>-Xmx512m</argument>
            <argument>-classpath</argument>
            <classpath />
            <argument>${app.entry}</argument>
          </arguments>
        </configuration>
      </plugin>
    </plugins>

  </build>


  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
        <version>${h2.version}</version>
      </dependency>
      <dependency>
        <groupId>com.zaxxer</groupId>
        <artifactId>HikariCP-java7</artifactId>
        <version>${HikariCP-java7.version}</version>
      </dependency>
      <dependency>
        <groupId>com.zaxxer</groupId>
        <artifactId>HikariCP</artifactId>
        <version>${HikariCP.version}</version>
      </dependency>
      <dependency>
        <groupId>com.alibaba</groupId>
        <artifactId>druid</artifactId>
        <version>${druid.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-aaa</artifactId>
        <version>${act-aaa.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-beetl</artifactId>
        <version>${act-beetl.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-beetlsql</artifactId>
        <version>${act-beetlsql.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-e2e</artifactId>
        <version>${act-e2e.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-ebean-java7</artifactId>
        <version>${act-ebean-java7.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-ebean</artifactId>
        <version>${act-ebean.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-eclipselink</artifactId>
        <version>${act-eclipselink.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-excel</artifactId>
        <version>${act-excel.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-freemarker</artifactId>
        <version>${act-freemarker.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-hibernate</artifactId>
        <version>${act-hibernate.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-jax-rs</artifactId>
        <version>${act-jax-rs.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-morphia</artifactId>
        <version>${act-morphia.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-mustache</artifactId>
        <version>${act-mustache.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-social-link</artifactId>
        <version>${act-social-link.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-storage</artifactId>
        <version>${act-storage.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-thymeleaf</artifactId>
        <version>${act-thymeleaf.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-velocity</artifactId>
        <version>${act-velocity.version}</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-parent</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-beetl</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-ebean-aaa-java7</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-ebean-all-java7</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-ebean-aaa</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-ebean-all</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-excel</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-eclipselink-aaa</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-eclipselink-all</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-freemarker</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-hibernate-aaa</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-hibernate-all</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-morphia-aaa</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-morphia-all</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-mustache</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-thymeleaf</artifactId>
        <version>1.8.8.1</version>
      </dependency>
      <dependency>
        <groupId>org.actframework</groupId>
        <artifactId>act-starter-velocity</artifactId>
        <version>1.8.8.1</version>
      </dependency>
    </dependencies>
  </dependencyManagement>

</project>
