You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
compose-analysis/pom.xml

135 lines
4.6 KiB

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.keyware</groupId>
<artifactId>keyware-cloud</artifactId>
<version>1.0.0</version>
</parent>
<groupId>com.keyware</groupId>
<artifactId>compose-analysis</artifactId>
<version>1.0.0</version>
<name>compose-analysis</name>
<description>compose-analysis 源码溯源服务</description>
<properties>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- nacos 服务的注册发现 -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!-- nacos 配置中心做依赖管理 -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<!-- mongodb -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<!-- 集成solr依赖 -->
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-solrj</artifactId>
<version>7.6.0</version>
<exclusions>
<exclusion>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 函数解析器-->
<dependency>
<groupId>com.keyware</groupId>
<artifactId>keyswan-analysis</artifactId>
<version>releases-1.1.5</version>
</dependency>
<dependency>
<groupId>com.keyware</groupId>
<artifactId>keyswan-function</artifactId>
<version>release-1.1.2</version>
</dependency>
<!-- 公共依赖-->
<dependency>
<groupId>com.keyware</groupId>
<artifactId>keyware-common</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<!-- 引入 api 接口-->
<dependency>
<groupId>com.keyware</groupId>
<artifactId>compose-analysis-api</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>keyware-repos</id>
<name>KeyWare Repository</name>
<url>http://218.30.67.85:19201/nexus/content/groups/public/</url>
</repository>
<repository>
<id>keyware-repos-2</id>
<name>KeyWare Repository-2</name>
<url>http://218.30.67.85:19201/nexus/content/repositories/releases/</url>
</repository>
<!-- <repository>-->
<!-- <id>aliyun-repository</id>-->
<!-- <name>aliyun repository</name>-->
<!-- <url>https://maven.aliyun.com/repository/public/</url>-->
<!-- </repository>-->
<!-- <repository>-->
<!-- <id>aliyun-repos</id>-->
<!-- <name>Aliyun Repository</name>-->
<!-- <url>http://maven.aliyun.com/nexus/content/groups/public</url>-->
<!-- <releases>-->
<!-- <enabled>true</enabled>-->
<!-- </releases>-->
<!-- <snapshots>-->
<!-- <enabled>false</enabled>-->
<!-- </snapshots>-->
<!-- </repository>-->
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>3.2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>16</source>
<target>16</target>
</configuration>
</plugin>
</plugins>
</build>
</project>