-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
57 lines (53 loc) · 1.97 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<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>se.kalen</groupId>
<artifactId>tibber-graphql-model</artifactId>
<version>0.4.0-SNAPSHOT</version>
<name>Tibber GraphQL Model</name>
<description>Tibber GraphSQL API Model Classes</description>
<properties>
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
<aexp.nodes.version>0.4.0</aexp.nodes.version>
<hibernate.version>5.6.14.Final</hibernate.version>
</properties>
<dependencies>
<dependency>
<groupId>io.aexp.nodes.graphql</groupId>
<artifactId>nodes</artifactId>
<version>${aexp.nodes.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<release>8</release>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<!--
Bintray is sunset, for upgrade Jitpack might be an option for getting Nodes Maven packages.
See https://github.com/americanexpress/nodes/issues/121
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
-->
<repository>
<id>bintray-americanexpress-maven</id>
<url>https://dl.bintray.com/americanexpress/maven</url>
</repository>
</repositories>
</project>