forked from dicdiksha/fork-data-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
101 lines (93 loc) · 2.9 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<prerequisites>
<maven>3.0.0</maven>
</prerequisites>
<groupId>org.sunbird</groupId>
<artifactId>data-pipeline</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>LERN Jobs</name>
<description>
LERN Flink jobs for stream processing
</description>
<url>https://sunbird.org/</url>
<modules>
<module>jobs-core</module>
<module>notification</module>
<module>dp-core</module>
<module>lms-jobs</module>
</modules>
<properties>
<!-- maven specific properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<scala.version>2.12</scala.version>
<scala.maj.version>2.12.11</scala.maj.version>
<flink.version>1.13.5</flink.version>
<kafka.version>2.4.1</kafka.version>
<jackson-jaxrs.version>1.9.13</jackson-jaxrs.version>
<scoverage.plugin.version>1.4.0</scoverage.plugin.version>
<java.target.runtime>11</java.target.runtime>
<sonar.exclusions>**/**.java</sonar.exclusions>
</properties>
<repositories>
<repository>
<id>my-local-repo</id>
<url>file://${user.home}/.m2/repository</url>
</repository>
<repository>
<id>apache-releases</id>
<url>https://repository.apache.org/content/groups/public</url>
</repository>
<repository>
<id>scala-tools.org</id>
<name>Scala-tools Maven2 Repository</name>
<url>https://oss.sonatype.org/content/groups/scala-tools</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>scala-tools.org</id>
<name>Scala-tools Maven2 Repository</name>
<url>http://scala-tools.org/repo-releases</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.maj.version}</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.11</source>
<target>1.11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.scoverage</groupId>
<artifactId>scoverage-maven-plugin</artifactId>
<version>${scoverage.plugin.version}</version>
<configuration>
<scalaVersion>${scala.version}</scalaVersion>
<aggregate>true</aggregate>
<highlighting>true</highlighting>
<excludedPackages>org.sunbird.incredible</excludedPackages>
<excludedPackages>org.sunbird.notification-sdk</excludedPackages>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>