/
githubmirror
/
alluxio
Обзор
Документация
Войти
/
githubmirror
/
alluxio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
job/server/pom.xml
181 строка
6 KB
Rico Chiu
Update version to 2.10.0-SNAPSHOT
02 июл 2024, 23:56
02 июл 2024, 23:56
e55bf07
Код
Авторство
О чём код?
<!-- The Alluxio Open Foundation licenses this work under the Apache License, version 2.0 (the "License"). You may not use this work except in compliance with the License, which is available at www.apache.org/licenses/LICENSE-2.0 This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, as more fully set forth in the License. See the NOTICE file distributed with this work for information regarding copyright ownership. --> <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> <parent> <groupId>org.alluxio</groupId> <artifactId>alluxio-job</artifactId> <version>2.10.0-SNAPSHOT</version> </parent> <artifactId>alluxio-job-server</artifactId> <packaging>jar</packaging> <name>Alluxio Job Service - Server</name> <description>Servers of Alluxio job service</description> <properties> <!-- These need to be defined here as well as in the parent pom so that mvn can run properly from sub-project directories --> <build.path>${project.parent.parent.basedir}/build</build.path> </properties> <dependencies> <!-- External dependencies --> <dependency> <groupId>com.github.oshi</groupId> <artifactId>oshi-core</artifactId> <version>${oshi.version}</version> </dependency> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-annotations</artifactId> </dependency> <dependency> <groupId>org.apache.orc</groupId> <artifactId>orc-core</artifactId> </dependency> <dependency> <groupId>org.apache.parquet</groupId> <artifactId>parquet-avro</artifactId> </dependency> <dependency> <groupId>org.apache.parquet</groupId> <artifactId>parquet-cli</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet-core</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.inject</groupId> <artifactId>jersey-hk2</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.jaxrs</groupId> <artifactId>jackson-jaxrs-json-provider</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-json-jackson</artifactId> </dependency> <!-- Internal dependencies --> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-core-client-fs</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-core-client-hdfs</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-core-server-master</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-job-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-stress-common</artifactId> <version>${project.version}</version> </dependency> <!-- Internal test Dependencies --> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-core-client-fs</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-core-common</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-underfs-local</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-job-common</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <!-- REST API documentation --> <plugin> <groupId>com.github.kongchen</groupId> <artifactId>swagger-maven-plugin</artifactId> <configuration> <apiSources> <apiSource> <springmvc>false</springmvc> <schemes>http</schemes> <host>[Alluxio Job Master or Job Worker Hostname]</host> <basePath>/api/v1</basePath> <info> <version>v1</version> <title>Alluxio Job Service REST API Documentation</title> <description> The Alluxio Job Master is a component of the Job Service that coordinates Alluxio Job Workers to execute distributed tasks scheduled by the Alluxio system. The Alluxio Job Worker is a component of the Job Service that executes various I/O intensive tasks scheduled by the Alluxio system. </description> </info> <locations> <location>alluxio.master.AlluxioJobMasterRestServiceHandler</location> <location>alluxio.worker.AlluxioJobWorkerRestServiceHandler</location> <location>alluxio.master.job.JobMasterClientRestServiceHandler</location> </locations> <templatePath>${project.parent.parent.basedir}/templates/strapdown.html.hbs</templatePath> <outputPath>${project.parent.parent.basedir}/generated/job/index.html</outputPath> <swaggerDirectory>${project.parent.parent.basedir}/generated/job/swagger-ui</swaggerDirectory> </apiSource> </apiSources> </configuration> </plugin> </plugins> </build> </project>