代码拉取完成,页面将自动刷新
<?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.6.3.1-SNAPSHOT</version>
<name>ActFramework Starters</name>
<description>ActFramework Starters</description>
<inceptionYear>2018</inceptionYear>
<parent>
<groupId>org.actframework</groupId>
<artifactId>parent</artifactId>
<version>1.6.3</version>
</parent>
<properties>
<revision>1.6.3.0</revision>
<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>
<app.entry>ToBeOverwritten</app.entry>
<act-aaa.version>1.3.0</act-aaa.version>
<act-beetl.version>1.2.2</act-beetl.version>
<act-beetlsql.version>1.3.0</act-beetlsql.version>
<act-ebean.version>1.3.1</act-ebean.version>
<!-- act-ebean2 only works on java 8 -->
<act-ebean2.version>1.2.1</act-ebean2.version>
<act-excel.version>1.3.0</act-excel.version>
<act-freemarker.version>1.2.0</act-freemarker.version>
<act-morphia.version>1.3.0</act-morphia.version>
<act-mustache.version>1.3.0</act-mustache.version>
<act-social-link.version>0.11.0</act-social-link.version>
<act-storage.version>0.12.0</act-storage.version>
<act-thymeleaf.version>1.2.0</act-thymeleaf.version>
<act-velocity.version>1.2.0</act-velocity.version>
<h2.version>1.4.196</h2.version>
<HikariCP-java7.version>2.4.13</HikariCP-java7.version>
<HikariCP.version>2.7.5</HikariCP.version>
<druid.version>1.1.6</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</module>
<module>act-starter-ebean-all</module>
<module>act-starter-ebean2-aaa</module>
<module>act-starter-ebean2-all</module>
<module>act-starter-excel</module>
<module>act-starter-freemarker</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>buildnumber-maven-plugin</artifactId>
<version>${buildnumber-maven-plugin.version}</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<shortRevisionLength>4</shortRevisionLength>
</configuration>
</plugin>
<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-ebean</artifactId>
<version>${act-ebean.version}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-ebean2</artifactId>
<version>${act-ebean2.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-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>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-beetl</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-ebean-aaa</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-ebean-all</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-ebean2-aaa</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-ebean2-all</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-excel</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-freemarker</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-morphia-aaa</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-morphia-all</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-mustache</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-thymeleaf</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-starter-velocity</artifactId>
<version>${revision}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。