diff --git a/pom.xml b/pom.xml
index dde2e50..ec1c06b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -90,6 +90,10 @@
hive-standalone-metastore
${dep.hive.version}
+
+ io.airlift
+ aircompressor
+
org.apache.hive
hive-metastore
diff --git a/src/main/java/com/hadoop/compression/lzo/LzoCodec.java b/src/main/java/com/hadoop/compression/lzo/LzoCodec.java
deleted file mode 100644
index e0f5f76..0000000
--- a/src/main/java/com/hadoop/compression/lzo/LzoCodec.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- */
-package com.hadoop.compression.lzo;
-
-// Certain file formats store codec class name within file header section
-// (e.g. sequence file) and provide no clean way for providing custom codec
-// factory.
-public class LzoCodec
- extends io.airlift.compress.lzo.LzoCodec {}