-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
115 lines (104 loc) · 4.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?xml version="1.0" encoding="UTF-8" ?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>com.hedera</groupId>
<artifactId>hedera-etl</artifactId>
<version>0.0.1</version>
<description>Hedera ETL populates BigQuery dataset with transactions and records generated by the Hedera network</description>
<inceptionYear>2020</inceptionYear>
<modelVersion>4.0.0</modelVersion>
<name>Hedera ETL</name>
<packaging>pom</packaging>
<url>https://github.com/blockchain-etl/hedera-etl</url>
<ciManagement>
<system>TravisCI</system>
<url>https://travis-ci.org/github/blockchain-etl/hedera-etl</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/blockchain-etl/hedera-etl/issues</url>
</issueManagement>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>hedera-etl-bigquery</module>
<module>hedera-deduplication-bigquery</module>
</modules>
<organization>
<name>Hedera Hashgraph, LLC</name>
<url>https://hedera.com</url>
</organization>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.7.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<jacoco.version>0.8.5</jacoco.version>
<java.version>11</java.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<!-- To update license headers: ./mvnw license:update-file-header -N -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.0.0</version>
<configuration>
<canUpdateCopyright>true</canUpdateCopyright>
<excludes>
<exclude>**/target/**/*</exclude>
<exclude>.mvn/**/*</exclude>
</excludes>
<includes>
<include>**/*.java</include>
</includes>
<licenseName>apache_v2</licenseName>
<!-- These contain unprintable characters to suppress showing the delimiters -->
<processEndTag></processEndTag>
<processStartTag></processStartTag>
<sectionDelimiter></sectionDelimiter>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>