mirror of
https://github.com/theonedev/onedev.git
synced 2025-12-08 18:26:30 +00:00
66 lines
2.5 KiB
XML
66 lines
2.5 KiB
XML
<?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>
|
|
<artifactId>server-search</artifactId>
|
|
<parent>
|
|
<groupId>com.gitplex</groupId>
|
|
<artifactId>server-parent</artifactId>
|
|
<version>1.0-EAP-build83</version>
|
|
</parent>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.gitplex</groupId>
|
|
<artifactId>plugin-maven</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
<configuration>
|
|
<visitor>true</visitor>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.gitplex</groupId>
|
|
<artifactId>server-core</artifactId>
|
|
<version>1.0-EAP-build83</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>lucene-core</artifactId>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<type>jar</type>
|
|
<version>${lucene.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>lucene-queries</artifactId>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<type>jar</type>
|
|
<version>${lucene.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>lucene-queryparser</artifactId>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<type>jar</type>
|
|
<version>${lucene.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>lucene-analyzers-common</artifactId>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<type>jar</type>
|
|
<version>${lucene.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>lucene-facet</artifactId>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<type>jar</type>
|
|
<version>${lucene.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<moduleClass>com.gitplex.server.search.SearchModule</moduleClass>
|
|
<lucene.version>4.10.3</lucene.version>
|
|
</properties>
|
|
</project> |