65 Star 494 Fork 184

Coody / Reduce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.79 KB
一键复制 编辑 原始数据 按行查看 历史
Coody 提交于 2022-10-18 13:30 . 修复
<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>org.coody</groupId>
<artifactId>reduce</artifactId>
<version>beta-1.0</version>
<packaging>jar</packaging>
<name>reduce</name>
<url>http://maven.apache.org</url>
<properties>
<java.version>1.8</java.version>
<coody.version>${project.version}</coody.version>
<h2db.version>1.3.175</h2db.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<log4j.version>1.2.9</log4j.version>
<coody.version>alpha-1.9.3</coody.version>
</properties>
<dependencies>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2db.version}</version>
</dependency>
<dependency>
<groupId>org.coody.framework</groupId>
<artifactId>coody-esource</artifactId>
<version>${coody.version}</version>
</dependency>
<dependency>
<groupId>org.coody.framework</groupId>
<artifactId>coody-web-for-minicat</artifactId>
<version>${coody.version}</version>
</dependency>
<dependency>
<groupId>org.coody.framework</groupId>
<artifactId>coody-cache</artifactId>
<version>${coody.version}</version>
</dependency>
<dependency>
<groupId>org.coody.framework</groupId>
<artifactId>coody-jdbc</artifactId>
<version>${coody.version}</version>
</dependency>
<dependency>
<groupId>org.coody.framework</groupId>
<artifactId>coody-mail</artifactId>
<version>${coody.version}</version>
</dependency>
<dependency>
<groupId>org.coody.framework</groupId>
<artifactId>coody-task</artifactId>
<version>${coody.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>utf8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>org.coody.reduce.ReduceApp</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/coodyer/reduce.git
git@gitee.com:coodyer/reduce.git
coodyer
reduce
Reduce
master

搜索帮助