| <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <parent> |
| <artifactId>linkis</artifactId> |
| <groupId>com.webank.wedatasphere.linkis</groupId> |
| <version>0.9.4</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <artifactId>linkis-mlsql-entrance</artifactId> |
| <dependencies> |
| <dependency> |
| <groupId>com.webank.wedatasphere.linkis</groupId> |
| <artifactId>linkis-ujes-entrance</artifactId> |
| <version>${linkis.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.webank.wedatasphere.linkis</groupId> |
| <artifactId>linkis-ujes-client</artifactId> |
| <version>${linkis.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.webank.wedatasphere.linkis</groupId> |
| <artifactId>linkis-storage</artifactId> |
| <version>${linkis.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.webank.wedatasphere.linkis</groupId> |
| <artifactId>linkis-cloudRPC</artifactId> |
| <version>${linkis.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.typesafe</groupId> |
| <artifactId>config</artifactId> |
| <version>1.2.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>fluent-hc</artifactId> |
| <version>4.5.7</version> |
| </dependency> |
| <dependency> |
| <groupId>tech.mlsql</groupId> |
| <artifactId>common-utils_${scala.binary.version}</artifactId> |
| <version>0.2.0</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.lihaoyi</groupId> |
| <artifactId>ujson_${scala.binary.version}</artifactId> |
| <version>0.7.4</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>net.sf.json-lib</groupId> |
| <artifactId>json-lib</artifactId> |
| <version>2.4</version> |
| <classifier>jdk15</classifier> |
| </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-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>linkis-ujes-mlsql-entrance</finalName> |
| <appendAssemblyId>false</appendAssemblyId> |
| <attach>false</attach> |
| <descriptors> |
| <descriptor>src/main/assembly/distribution.xml</descriptor> |
| </descriptors> |
| </configuration> |
| </plugin> |
| </plugins> |
| <resources> |
| <resource> |
| <directory>${basedir}/src/main/resources</directory> |
| <includes> |
| <include>**/*.properties</include> |
| <include>**/*.xml</include> |
| <include>**/*.yml</include> |
| </includes> |
| </resource> |
| </resources> |
| <finalName>${project.artifactId}-${project.version}</finalName> |
| </build> |
| |
| </project> |