-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
226 lines (204 loc) · 8.83 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<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">
<parent>
<groupId>dev.resteasy.tools</groupId>
<artifactId>resteasy-parent</artifactId>
<version>2.0.4.Final</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>RESTEasy: gRPC Parent</name>
<groupId>dev.resteasy.grpc</groupId>
<artifactId>resteasy-grpc-parent</artifactId>
<version>1.0.0.Alpha6-SNAPSHOT</version>
<packaging>pom</packaging>
<url>https://resteasy.dev</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://repository.jboss.org/licenses/apache-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/resteasy/resteasy-grpc.git</connection>
<developerConnection>scm:git:[email protected]:resteasy/resteasy-grpc.git</developerConnection>
<url>https://github.com/resteasy/resteasy-grpc/tree/main/</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/jamezp/resteasy-grpc/issues</url>
</issueManagement>
<developers>
<developer>
<id>ronsigal</id>
<name>Ron Sigal</name>
<email>[email protected]</email>
<organization>JBoss by Red Hat</organization>
<url>https://resteasy.dev</url>
<roles>
<role>project-owner</role>
</roles>
<timezone>-5</timezone>
</developer>
<developer>
<id>jamezp</id>
<name>James Perkins</name>
<email>[email protected]</email>
<organization>JBoss by Red Hat</organization>
<url>https://resteasy.dev</url>
<roles>
<role>project-owner</role>
</roles>
<timezone>-8</timezone>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Dependency versions, please keep in alphabetical order -->
<version.jakarta.enterprise>4.0.1</version.jakarta.enterprise>
<version.jakarta.servlet>5.0.0</version.jakarta.servlet>
<version.jakarta.ws.rs>3.1.0</version.jakarta.ws.rs>
<version.com.github.javaparser>3.18.0</version.com.github.javaparser>
<version.com.google.protobuf>3.22.3</version.com.google.protobuf>
<protoc-gen-grpc-java.version>1.51.1</protoc-gen-grpc-java.version>
<version.io.undertow>2.3.10.Final</version.io.undertow>
<version.org.jboss.logging.jboss-logging>3.5.3.Final</version.org.jboss.logging.jboss-logging>
<version.org.jboss.logging.jboss-logging-tools>2.2.1.Final</version.org.jboss.logging.jboss-logging-tools>
<version.org.jboss.resteasy>6.2.6.Final</version.org.jboss.resteasy>
<version.org.wildfly>28.0.0.Final</version.org.wildfly>
<!-- Test only dependencies -->
<version.com.github.tomakehurst.wiremock>2.27.2</version.com.github.tomakehurst.wiremock>
<!-- Plugin Versions, please keep in alphabetical order -->
<!-- print logs to file by default -->
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<!-- maven-enforcer-plugin -->
<maven.min.version>3.6.0</maven.min.version>
<!-- maven-surefire-plugin -->
<surefire.system.args>-Xms512m -Xmx512m</surefire.system.args>
<maven.test.skip>false</maven.test.skip>
<skipTests>${maven.test.skip}</skipTests>
<skip.format>false</skip.format>
<skip.compile>false</skip.compile>
</properties>
<modules>
<module>grpc-bom</module>
<module>grpc-test-bom</module>
<module>grpc-bridge</module>
<module>grpc-bridge-runtime</module>
<module>testsuite</module>
</modules>
<build>
<plugins>
<!-- Format source files -->
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code</groupId>
<artifactId>impsort-maven-plugin</artifactId>
<executions>
<execution>
<id>sort-resource-imports</id>
<phase>process-resources</phase>
<goals>
<goal>sort</goal>
</goals>
<configuration>
<sourceDirectory>${project.basedir}/src/main/resources</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/resources</testSourceDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>format-check</id>
<build>
<plugins>
<!-- Validate formatting -->
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<executions>
<execution>
<id>validate-format</id>
<phase>validate</phase>
<goals>
<goal>validate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.revelc.code</groupId>
<artifactId>impsort-maven-plugin</artifactId>
<executions>
<execution>
<id>check-import-sort</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
<execution>
<id>check-import-sort-resources</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<sourceDirectory>${project.basedir}/src/main/resources</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/resources</testSourceDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
<!-- Required for provisioning WildFly. Not all dependencies currently exist on Maven Central. This is also
useful for when we want to test with versions releases that have not yet been synchronized to Maven Central
from JBoss Nexus.
-->
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
</repository>
<!-- Required for PicketBox, once this is removed from WildFly this can be removed -->
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
<id>jboss-enterprise-maven-repository</id>
<name>JBoss Enterprise Maven Repository</name>
<url>https://maven.repository.redhat.com/ga/</url>
<layout>default</layout>
</repository>
</repositories>
</project>