pom.xml 4.34 KB
Newer Older
Harish Butani committed
1
<?xml version="1.0" encoding="UTF-8"?>
Harish Butani committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

<!--
  ~ 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.
  -->

21 22
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
Harish Butani committed
23 24 25
         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>

Harish Butani committed
26
    <parent>
27 28
        <groupId>org.apache.atlas</groupId>
        <artifactId>apache-atlas</artifactId>
Harish Butani committed
29 30
        <version>0.1-incubating-SNAPSHOT</version>
    </parent>
31 32 33
    <artifactId>atlas-typesystem</artifactId>
    <description>Apache Atlas Typesystem Module</description>
    <name>Apache Atlas Typesystem</name>
Harish Butani committed
34 35 36
    <packaging>jar</packaging>

    <dependencies>
Shwetha GS committed
37
        <dependency>
Shwetha GS committed
38 39
            <groupId>org.codehaus.jettison</groupId>
            <artifactId>jettison</artifactId>
Shwetha GS committed
40 41
        </dependency>

Harish Butani committed
42 43 44 45
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-compiler</artifactId>
        </dependency>
46

Harish Butani committed
47 48 49 50
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-reflect</artifactId>
        </dependency>
51

Harish Butani committed
52 53 54 55
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>jline</artifactId>
        </dependency>
56

Harish Butani committed
57 58 59 60
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
        </dependency>
61

Harish Butani committed
62 63 64 65
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-actors</artifactId>
        </dependency>
66

Harish Butani committed
67 68 69 70
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scalap</artifactId>
        </dependency>
71

Harish Butani committed
72 73 74 75 76 77 78 79 80 81
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest_${scala.binary.version}</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.scalamacros</groupId>
            <artifactId>quasiquotes_${scala.binary.version}</artifactId>
        </dependency>
82

Harish Butani committed
83 84 85 86
        <dependency>
            <groupId>org.json4s</groupId>
            <artifactId>json4s-native_2.10</artifactId>
        </dependency>
87

Harish Butani committed
88 89 90 91
        <dependency>
            <groupId>com.github.nscala-time</groupId>
            <artifactId>nscala-time_2.10</artifactId>
        </dependency>
92

Harish Butani committed
93 94 95 96 97 98 99 100 101
        <dependency>
            <groupId>com.typesafe</groupId>
            <artifactId>config</artifactId>
        </dependency>

        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
Shwetha GS committed
102

103 104 105 106 107
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
        </dependency>

Harish Butani committed
108 109 110 111 112
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>

113
        <dependency>
114 115
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
116
        </dependency>
117

118
        <dependency>
Harish Butani committed
119 120 121
            <groupId>it.unimi.dsi</groupId>
            <artifactId>fastutil</artifactId>
        </dependency>
122

123 124 125 126
        <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
        </dependency>
127 128

        <dependency>
129 130
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
131
        </dependency>
Harish Butani committed
132 133 134 135 136 137 138 139 140 141 142
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>net.alchim31.maven</groupId>
                <artifactId>scala-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>