-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
159 lines (149 loc) · 5.89 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<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>ch.swisscom</groupId>
<artifactId>yang-kafka-integration</artifactId>
<version>0.1</version>
<packaging>pom</packaging>
<organization>
<name>Swisscom (Schweiz) AG</name>
<url>https://swisscom.ch</url>
</organization>
<url>https://www.network-analytics.org/yp/</url>
<inceptionYear>2023</inceptionYear>
<name>yang-kafka-integration</name>
<description>Yang support for Apache Kafka and Confluent's Schema Registry</description>
<developers>
<developer>
<id>ahassany</id>
<name>Ahmed Elhassany</name>
<email>[email protected]</email>
<url>https://hassany.ps</url>
<organization>Swisscom (Schweiz) AG</organization>
<organizationUrl>https://swisscom.ch</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<url>https://github.com/network-analytics/yang-kafka-integration</url>
<connection>[email protected]:network-analytics/yang-kafka-integration.git</connection>
</scm>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<java.version>17</java.version>
<yangkit.version>1.4.5</yangkit.version>
<yang-comparator.version>1.0.0</yang-comparator.version>
<spotless.version>2.43.0</spotless.version>
<confluent.version>7.5.7</confluent.version>
<junit.version>4.13.2</junit.version>
<kafka.scala.version>2.13</kafka.scala.version>
</properties>
<modules>
<module>yang-schema-registry-plugin</module>
</modules>
<repositories>
<repository>
<id>confluent</id>
<name>Confluent Maven repository</name>
<url>https://packages.confluent.io/maven/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>${spotless.version}</version>
<configuration>
<formats>
<!-- you can define as many formats as you want, each is independent -->
<format>
<!-- define the files to apply to -->
<includes>
<include>.gitattributes</include>
<include>.gitignore</include>
</includes>
<!-- define the steps to apply to those files -->
<trimTrailingWhitespace/>
<endWithNewline/>
<indent>
<tabs>true</tabs>
<spacesPerTab>4</spacesPerTab>
</indent>
</format>
</formats>
<!-- define a language-specific format -->
<java>
<!-- no need to specify files, inferred automatically, but you can if you want -->
<!-- apply a specific flavor of google-java-format and reflow long strings -->
<googleJavaFormat>
<version>1.25.2</version>
<formatJavadoc>true</formatJavadoc>
</googleJavaFormat>
</java>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
<phase>compile</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit4</artifactId>
<version>3.5.2</version>
</dependency>
</dependencies>
<configuration>
<includes>
<include>**/*.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/network-analytics/</url>
</repository>
</distributionManagement>
</project>