38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.atguigu.phoenix</groupId>
|
|
<artifactId>phoenix</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.phoenix</groupId>
|
|
<artifactId>phoenix-queryserver-client</artifactId>
|
|
<version>5.0.0-HBase-2.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.phoenix</groupId>
|
|
<artifactId>phoenix-core</artifactId>
|
|
<version>5.0.0-HBase-2.0</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.glassfish</groupId>
|
|
<artifactId>javax.el</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.glassfish</groupId>
|
|
<artifactId>javax.el</artifactId>
|
|
<version>3.0.1-b06</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |