dss-apiservice-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.webank.wedatasphere.dss</groupId> <artifactId>dss-apiservice-server</artifactId> <version>1.2.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2019 WeBank ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. ~ --> <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"> <parent> <artifactId>dss</artifactId> <groupId>com.webank.wedatasphere.dss</groupId> <version>1.2.2</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>dss-apiservice-server</artifactId> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jersey.version>2.30.1</jersey.version> <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> <maven-failsafe-plugin.version>2.22.2</maven-failsafe-plugin.version> </properties> <dependencies> <dependency> <groupId>com.webank.wedatasphere.dss</groupId> <artifactId>dss-common</artifactId> <version>${dss.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.linkis</groupId> <artifactId>linkis-module</artifactId> <version>${linkis.version}</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>hk2-api</artifactId> <groupId>org.glassfish.hk2</groupId> </exclusion> <exclusion> <artifactId>jersey-common</artifactId> <groupId>org.glassfish.jersey.core</groupId> </exclusion> <exclusion> <artifactId>linkis-common</artifactId> <groupId>org.apache.linkis</groupId> </exclusion> <exclusion> <artifactId>xstream</artifactId> <groupId>com.thoughtworks.xstream</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.83</version> </dependency> <!--jersey bean validation--> <dependency> <groupId>org.glassfish.jersey.ext</groupId> <artifactId>jersey-bean-validation</artifactId> <version>${jersey.version}</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>javax.ws.rs-api</artifactId> <groupId>javax.ws.rs</groupId> </exclusion> <exclusion> <artifactId>hk2-locator</artifactId> <groupId>org.glassfish.hk2</groupId> </exclusion> <exclusion> <artifactId>hk2-api</artifactId> <groupId>org.glassfish.hk2</groupId> </exclusion> <exclusion> <artifactId>hibernate-validator</artifactId> <groupId>org.hibernate</groupId> </exclusion> <exclusion> <artifactId>jersey-server</artifactId> <groupId>org.glassfish.jersey.core</groupId> </exclusion> </exclusions> </dependency> <!--bml client--> <dependency> <groupId>org.apache.linkis</groupId> <artifactId>linkis-pes-client</artifactId> <version>${linkis.version}</version> <exclusions> <exclusion> <artifactId>commons-beanutils</artifactId> <groupId>commons-beanutils</groupId> </exclusion> <exclusion> <artifactId>linkis-common</artifactId> <groupId>org.apache.linkis</groupId> </exclusion> <exclusion> <artifactId>json4s-jackson_2.11</artifactId> <groupId>org.json4s</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.linkis</groupId> <artifactId>linkis-computation-client</artifactId> <version>${linkis.version}</version> <exclusions> <exclusion> <artifactId>commons-beanutils</artifactId> <groupId>commons-beanutils</groupId> </exclusion> <exclusion> <artifactId>linkis-common</artifactId> <groupId>org.apache.linkis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.linkis</groupId> <artifactId>linkis-mybatis</artifactId> <version>${linkis.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.linkis</groupId> <artifactId>linkis-storage</artifactId> <version>${linkis.version}</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>linkis-common</artifactId> <groupId>org.apache.linkis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.linkis</groupId> <artifactId>linkis-common</artifactId> <version>${linkis.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.linkis</groupId> <artifactId>linkis-rpc</artifactId> <version>${linkis.version}</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>archaius-core</artifactId> <groupId>com.netflix.archaius</groupId> </exclusion> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>spring-cloud-starter</artifactId> <groupId>org.springframework.cloud</groupId> </exclusion> <exclusion> <artifactId>spring-web</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>3.4.1</version> <exclusions> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> <!--Metadata common--> <!-- <dependency>--> <!-- <groupId>org.apache.linkis</groupId>--> <!-- <artifactId>linkis-metadatamanager-common</artifactId>--> <!-- <version>${linkis.version}</version>--> <!-- </dependency>--> <dependency> <artifactId>hk2-api</artifactId> <groupId>org.glassfish.hk2</groupId> <version>2.4.0-b34</version> </dependency> <!-- <dependency>--> <!-- <groupId>org.apache.linkis</groupId>--> <!-- <artifactId>linkis-datasourcemanager-common</artifactId>--> <!-- <version>${linkis.version}</version>--> <!-- </dependency>--> <dependency> <groupId>org.modelmapper</groupId> <artifactId>modelmapper</artifactId> <version>0.7.5</version> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> <version>0.6.0</version> <exclusions> <exclusion> <artifactId>jackson-databind</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>2.1.210</version> <scope>test</scope> </dependency> <dependency> <groupId>com.ninja-squad</groupId> <artifactId>DbSetup</artifactId> <version>2.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring.boot.version}</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>spring-boot-autoconfigure</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <version>1.5.2</version> <scope>test</scope> </dependency> <!-- <dependency>--> <!-- <groupId>org.springframework.cloud</groupId>--> <!-- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>--> <!-- <version>${spring.cloud.version}</version>--> <!-- <exclusions>--> <!-- <exclusion>--> <!-- <artifactId>logback-classic</artifactId>--> <!-- <groupId>ch.qos.logback</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <artifactId>log4j-to-slf4j</artifactId>--> <!-- <groupId>org.apache.logging.log4j</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <artifactId>gson</artifactId>--> <!-- <groupId>com.google.code.gson</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <artifactId>jsr311-api</artifactId>--> <!-- <groupId>javax.ws.rs</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <artifactId>xstream</artifactId>--> <!-- <groupId>com.thoughtworks.xstream</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <artifactId>commons-math</artifactId>--> <!-- <groupId>org.apache.commons</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <artifactId>jackson-core</artifactId>--> <!-- <groupId>com.fasterxml.jackson.core</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <artifactId>spring-boot-autoconfigure</artifactId>--> <!-- <groupId>org.springframework.boot</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <artifactId>spring-boot-starter-aop</artifactId>--> <!-- <groupId>org.springframework.boot</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <artifactId>spring-boot-starter</artifactId>--> <!-- <groupId>org.springframework.boot</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <artifactId>spring-boot-starter-cache</artifactId>--> <!-- <groupId>org.springframework.boot</groupId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <groupId>org.springframework.cloud</groupId>--> <!-- <artifactId>spring-cloud-starter-loadbalancer</artifactId>--> <!-- </exclusion>--> <!-- </exclusions>--> <!-- </dependency>--> <dependency> <groupId>com.webank.wedatasphere.dss</groupId> <artifactId>dss-sso-integration-standard</artifactId> <version>${dss.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-core</artifactId> <version>1.19.4</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> </plugin> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <inherited>false</inherited> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/distribution.xml</descriptor> </descriptors> </configuration> </execution> </executions> <configuration> <skipAssembly>false</skipAssembly> <finalName>out</finalName> <appendAssemblyId>false</appendAssemblyId> <attach>false</attach> <descriptors> <descriptor>src/main/assembly/distribution.xml</descriptor> </descriptors> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> </includes> </resource> <!-- <resource>--> <!-- <directory>src/main/resources</directory>--> <!-- <excludes>--> <!-- <exclude>**/*.properties</exclude>--> <!-- <exclude>**/application.yml</exclude>--> <!-- <exclude>**/bootstrap.yml</exclude>--> <!-- <exclude>**/log4j2.xml</exclude>--> <!-- </excludes>--> <!-- </resource>--> </resources> <finalName>${project.artifactId}-${project.version}</finalName> </build> </project>