107 Star 1.3K Fork 303

GVPKoode / Kooder

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.36 KB
一键复制 编辑 原始数据 按行查看 历史
<?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>com.gitee.koode</groupId>
<artifactId>kooder</artifactId>
<version>1.0-beta4</version>
<packaging>pom</packaging>
<description>Gitee Search Engine</description>
<url>https://gitee.com/koode/kooder</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<!-- Compiler -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>8</source>
<target>8</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/../lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>core</module>
<module>gateway</module>
<module>indexer</module>
</modules>
<developers>
<developer>
<name>Winter Lau</name>
<email>javayou@gmail.com</email>
</developer>
</developers>
</project>
Java
1
https://gitee.com/koode/kooder.git
git@gitee.com:koode/kooder.git
koode
kooder
Kooder
master

搜索帮助