11 Star 18 Fork 19

石头哥哥 / gameFrame

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dependency-reduced-pom.xml 3.43 KB
一键复制 编辑 原始数据 按行查看 历史
石头哥哥 提交于 2014-10-25 15:48 . 模块化处理
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.dc</groupId>
<artifactId>dcServer</artifactId>
<version>1.6</version>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<resource>
<targetPath>${project.build.directory}</targetPath>
<directory>${project.basedir}</directory>
<includes>
<include>start.bat</include>
</includes>
</resource>
<resource>
<targetPath>${project.build.directory}/res</targetPath>
<directory>${project.basedir}/res</directory>
</resource>
<resource>
<targetPath>${project.build.directory}/classes/com/dc/gameserver/serverCore/model/dbsql/mapper</targetPath>
<directory>${project.basedir}/src/main/java/com/dc/gameserver/serverCore/model/dbsql/mapper</directory>
<includes>
<include>*.xml</include>
</includes>
</resource>
</resources>
<finalName>server</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>com.dc.gameserver.launcher</mainClass>
</transformer>
<transformer>
<resource>META-INF/spring.tooling</resource>
</transformer>
<transformer>
<resource>META-INF/spring.handlers</resource>
</transformer>
<transformer>
<resource>META-INF/spring.schemas</resource>
</transformer>
<transformer />
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<releases />
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>ehcache</id>
<name>local ehcache</name>
<url>http://oss.sonatype.org/</url>
</repository>
<repository>
<id>releases</id>
<url>http://127.0.0.1:8081/nexus/content/repositories/releases</url>
</repository>
<repository>
<releases />
<snapshots />
<id>sourceforge</id>
<url>http://oss.sonatype.org/content/groups/sourceforge/</url>
</repository>
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
<repository>
<id>springsource-repo</id>
<name>SpringSource Repository</name>
<url>http://repo.springsource.org/release</url>
</repository>
<repository>
<id>spring-milestones</id>
<url>http://maven.springframework.org/milestone/org/springframework/</url>
</repository>
</repositories>
</project>
Java
1
https://gitee.com/502959937/gameFrame.git
git@gitee.com:502959937/gameFrame.git
502959937
gameFrame
gameFrame
master

搜索帮助