1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/greenlaw110-simple-bbs

Клонировать/Скачать
pom.xml 4.9 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Gelin Luo Отправлено 26.03.2017 13:09 12f2054
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2017 Simple BBS with ActFramework
~
~ The OSGL MVC Server 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>
<groupId>com.greenlaw110</groupId>
<artifactId>simple-bbs</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>Simple BBS</name>
<description>A simple BBS app created with ActFramework</description>
<url>http://simple-bbs.actframework.org/</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<act.version>1.0.4</act.version>
<act-morphia.version>1.0.2</act-morphia.version>
<act-aaa.version>1.0.1</act-aaa.version>
<act-social-link.version>0.8.0</act-social-link.version>
<app.entry>simple_bbs.AppEntry</app.entry>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.5</version>
<executions>
<execution>
<id>create-archive</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/assembly/pkg.xml</descriptor>
</descriptors>
<outputDirectory>${project.build.directory}/dist/</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<configuration>
<includePom>true</includePom>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<executable>java</executable>
<arguments>
<argument>-Xms512m</argument>
<argument>-Xmx512m</argument>
<argument>-classpath</argument>
<classpath/>
<argument>${app.entry}</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act</artifactId>
<version>${act.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-aaa</artifactId>
<version>${act-aaa.version}</version>
</dependency>
<dependency>
<groupId>org.actframework</groupId>
<artifactId>act-social-link</artifactId>
<version>${act-social-link.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.6</version>
</dependency>
</dependencies>
</project>

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/greenlaw110-simple-bbs.git
git@api.gitlife.ru:oschina-mirror/greenlaw110-simple-bbs.git
oschina-mirror
greenlaw110-simple-bbs
greenlaw110-simple-bbs
master