4 Star 12 Fork 12

JeeWeb敏捷开发平台 / jeeweb-beetl-tag

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.50 KB
一键复制 编辑 原始数据 按行查看 历史
wangcunjian 提交于 2018-09-27 12:20 . 标签整理提交
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.jeeweb</groupId>
<artifactId>spring-beetl-tag</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>spring-beetl-tag</name>
<description>beetl tag</description>
<url>http://www.jeeweb.cn</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>王存见</name>
<email>502079461@qq.com</email>
<url>http://www.jeeweb.cn</url>
<organization>贵州数立行科技有限公司</organization>
<organizationUrl>http://www.dataact.cn</organizationUrl>
</developer>
</developers>
<scm>
<tag>master</tag>
<url>https://gitee.com/dataact/spring-beetl-tag.git</url>
<connection>scm:git:https://gitee.com/dataact/spring-beetl-tag.git</connection>
<developerConnection>scm:git:https://gitee.com/dataact/spring-beetl-tag.git</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.doc.outputEncoding>UTF-8</project.doc.outputEncoding>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<java.version>1.8</java.version>
<beetl.version>2.8.5</beetl.version>
<commons-lang3.version>3.3.2</commons-lang3.version>
<spring.version>5.0.2.RELEASE</spring.version>
<!-- 缓存 -->
<ehcache.version>2.10.4</ehcache.version>
</properties>
<dependencies>
<!-- web begin Spring MVC Test Framework 需要 servlet-api 3.0 以上 -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>beetl</artifactId>
<version>2.8.5</version>
<scope>provided</scope>
</dependency>
<!-- Ehcache 2.x //-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>${ehcache.version}</version>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>sonatype-center</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-center</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/dataact/spring-beetl-tag.git
git@gitee.com:dataact/spring-beetl-tag.git
dataact
spring-beetl-tag
jeeweb-beetl-tag
master

搜索帮助