123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?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>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.7.11</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>com.search</groupId>
- <artifactId>super-search</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>super-search</name>
- <description>super-search</description>
- <properties>
- <java.version>8</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-framework</artifactId>
- <version>2.1.1</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch</groupId>-->
- <!-- <artifactId>elasticsearch</artifactId>-->
- <!-- <version>7.6.2</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.elasticsearch.client</groupId>-->
- <!-- <artifactId>elasticsearch-rest-high-level-client</artifactId>-->
- <!-- <version>7.6.2</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.tika/tika-parsers -->
- <dependency>
- <groupId>org.apache.tika</groupId>
- <artifactId>tika-parsers</artifactId>
- <version>2.9.0</version>
- <type>pom</type>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.tika/tika-parsers-standard-package -->
- <dependency>
- <groupId>org.apache.tika</groupId>
- <artifactId>tika-parsers-standard-package</artifactId>
- <version>2.9.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.tika/tika-core -->
- <dependency>
- <groupId>org.apache.tika</groupId>
- <artifactId>tika-core</artifactId>
- <version>2.9.0</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>super-search</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- <!-- <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId>
- <executions> <execution> <id>build-push</id> <phase>package</phase> <goals>
- <goal>build</goal> <goal>push</goal> </goals> </execution> </executions>
- </plugin> -->
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>alimaven</id>
- <name>aliyun maven</name>
- <url>https://maven.aliyun.com/repository/public/</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>platomix-release</id>
- <name>NexusReleases</name>
- <url>https://windata.platomix.net/nexus/repository/maven-public/</url>
- </repository>
- </repositories>
- </project>
|