1 Star 2 Fork 1

seth.yang/dreamwork-base

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.83 KB
一键复制 编辑 原始数据 按行查看 历史
<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.dreamwork</groupId>
<artifactId>dreamwork-base</artifactId>
<version>3.1.4</version>
<packaging>bundle</packaging>
<description><![CDATA[
剔除对log4j的依赖
符合java8语法
osgi化
]]></description>
<name>dreamwork-base</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<felix.maven.plugin.version>2.5.4</felix.maven.plugin.version>
<upstream.url>https://maven.hothink.net.cn/repository</upstream.url>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<distributionManagement>
<repository>
<id>nexus</id>
<name>Releases</name>
<url>${upstream.url}/maven-releases/</url>
</repository>
<snapshotRepository>
<id>nexus</id>
<name>Snapshot</name>
<url>${upstream.url}/maven-snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<encoding>UTF-8</encoding>
<aggregate>true</aggregate>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${felix.maven.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.8</Bundle-RequiredExecutionEnvironment>
<Bundle-SymbolicName>org.dreamwork.base</Bundle-SymbolicName>
<Import-Package>org.slf4j, com.google.gson</Import-Package>
<Export-Packet>
org.dreamwork.gson,
org.dreamwork.ansy.processors, org.dreamwork.ansy.processors,
org.dreamwork.cli, org.dreamwork.cli.text,
org.dreamwork.compilation,
org.dreamwork.concurrent, org.dreamwork.concurrent.broadcast,
org.dreamwork.config,
org.dreamwork.db,
org.dreamwork.fs, org.dreamwork.nio,
org.dreamwork.i18n, org.dreamwork.i18n.adapters, org.dreamwork.i18n.manager,
org.dreamwork.misc, org.dreamwork.network, org.dreamwork.network.udp,
org.dreamwork.persistence, org.dreamwork.secure,
org.dreamwork.telnet, org.dreamwork.telnet.command,
org.dreamwork.text, org.dreamwork.text.sql,
org.dreamwork.ui.concurrent,
org.dreamwork.util, org.dreamwork.util.cal, org.dreamwork.util.sort
</Export-Packet>
</instructions>
</configuration>
<executions>
<execution>
<id>generate-resource</id>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.27.jre7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/seth_yang/dreamwork-base.git
[email protected]:seth_yang/dreamwork-base.git
seth_yang
dreamwork-base
dreamwork-base
master

搜索帮助