act-starters
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starters</artifactId>
<version>1.9.2.0</version>
</dependency><?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.9.2.0</version>
<name>ActFramework Starters</name>
<description>ActFramework Starters</description>
<inceptionYear>2018</inceptionYear>
<parent>
<groupId>org.actframework</groupId>
<artifactId>parent</artifactId>
<version>1.9.2</version>
</parent>
<properties>
<java.version>1.8</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>to.be.Overwritten</app.entry>
<act-aaa.version>1.10.0</act-aaa.version>
<act-beetl.version>1.8.0</act-beetl.version>
<act-beetlsql.version>1.8.2</act-beetlsql.version>
<act-ebean.version>1.8.0</act-ebean.version>
<act-eclipselink.version>1.7.0</act-eclipselink.version>
<act-excel.version>1.9.2</act-excel.version>
<act-freemarker.version>1.4.1</act-freemarker.version>
<act-hibernate.version>1.7.0</act-hibernate.version>
<act-jax-rs.version>1.1.0</act-jax-rs.version>
<act-morphia.version>1.10.0</act-morphia.version>
<act-mustache.version>1.5.0</act-mustache.version>
<act-social-link.version>0.14.0</act-social-link.version>
<act-storage.version>0.16.0</act-storage.version>
<act-thymeleaf.version>1.4.0</act-thymeleaf.version>
<act-velocity.version>1.4.1</act-velocity.version>
<HikariCP.version>3.4.5</HikariCP.version>
<druid.version>1.1.22</druid.version>
<druid-apache.version>0.18.1</druid-apache.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</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.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.apache.druid</groupId>
<artifactId>druid</artifactId>
<version>${druid-apache.version}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act</artifactId>
<version>${act.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-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.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-beetl</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-ebean-aaa</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-ebean-all</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-excel</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-eclipselink-aaa</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-eclipselink-all</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-freemarker</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-hibernate-aaa</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-hibernate-all</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-morphia-aaa</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-morphia-all</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-mustache</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-thymeleaf</artifactId>
<version>1.9.2.0</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-velocity</artifactId>
<version>1.9.2.0</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>