dss-framework-admin-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.webank.wedatasphere.dss</groupId> <artifactId>dss-framework-admin-service</artifactId> <version>1.2.2</version> </dependency>
<?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"> <parent> <artifactId>dss</artifactId> <groupId>com.webank.wedatasphere.dss</groupId> <version>1.2.2</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>dss-framework-admin-service</artifactId> <modelVersion>4.0.0</modelVersion> <properties> <swagger.version>2.9.2</swagger.version> <swagger-bootstrap-ui.version>1.9.2</swagger-bootstrap-ui.version> <commons-lang3.version>3.9</commons-lang3.version> </properties> <dependencies> <dependency> <groupId>org.apache.linkis</groupId> <artifactId>linkis-module</artifactId> <version>${linkis.version}</version> <scope>provided</scope> </dependency> <!--TODO 一个需要干掉的dependency--> <dependency> <groupId>com.webank.wedatasphere.dss</groupId> <artifactId>dss-framework-proxy-user-service</artifactId> <version>${dss.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons.lang3.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.linkis</groupId> <artifactId>linkis-httpclient</artifactId> <version>${linkis.version}</version> <exclusions> <exclusion> <artifactId>linkis-common</artifactId> <groupId>org.apache.linkis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.webank.wedatasphere.dss</groupId> <artifactId>dss-framework-common</artifactId> <version>${dss.version}</version> </dependency> <dependency> <groupId>org.apache.linkis</groupId> <artifactId>linkis-mybatis</artifactId> <version>${linkis.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.webank.wedatasphere.dss</groupId> <artifactId>dss-appconn-manager-client</artifactId> <version>${dss.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.webank.wedatasphere.dss</groupId> <artifactId>dss-sso-integration-standard</artifactId> <version>${dss.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.16</version> <scope>compile</scope> </dependency> <!-- <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.2.2</version> <scope>compile</scope> </dependency>--> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>okhttp</artifactId> <version>2.7.5</version> </dependency> </dependencies> <build> <plugins> <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-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> </includes> </resource> <!-- <resource> <directory>src/main/resources</directory> <includes> <include>**/*.xml</include> <include>**/*.properties</include> <include>**/*.yml</include> </includes> </resource>--> </resources> </build> </project>