]> gerrit.simantics Code Review - simantics/platform.git/blob - releng/org.simantics.sdk.build.p2.site/pom.xml
81466a97f2d40c737f348cce7c854a2f070a87ff
[simantics/platform.git] / releng / org.simantics.sdk.build.p2.site / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001 XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5
6     <groupId>org.simantics</groupId>
7     <artifactId>org.simantics.sdk.build.p2.site</artifactId>
8     <packaging>pom</packaging>
9     <version>1.30.0</version>
10
11     <properties>
12         <itext.version.actual>2.1.7.b1</itext.version.actual>
13         <antlr.version>3.5.2</antlr.version>
14         <lucene.version>4.9.0</lucene.version>
15         <lucene.version.actual>4.9.0.b0003</lucene.version.actual>
16         <lucene.prefix>org.apache.lucene4</lucene.prefix>
17         <jaxen.version>1.1.6</jaxen.version>
18         <jdom.version>2.0.6</jdom.version>
19         <jdom.version.actual>2.0.6.b0001</jdom.version.actual>
20         <jackson.version>2.8.8</jackson.version>
21         <javax.version>3.1.0</javax.version>
22         <jersey.version>2.25.1</jersey.version>
23         <slf4j.version>1.7.25</slf4j.version>
24         <slf4j.version.actual>1.7.25.b001</slf4j.version.actual>
25         <grpc.version>1.21.0</grpc.version>
26         <grpc.version.actual>1.21.0</grpc.version.actual>
27         <protobuf.version>3.7.1</protobuf.version>
28         <zeroturnaround.version>1.10</zeroturnaround.version>
29         <eclipse.collections.version>9.2.0</eclipse.collections.version>
30         <caffeine.version>2.6.2</caffeine.version>
31     </properties>
32
33     <repositories>
34         <!--
35         <repository>
36             <id>project-specific-deps</id>
37             <name>project-specific-deps</name>
38             <url>file:///${basedir}/repo</url>
39         </repository>c.version.actual
40         --> 
41     </repositories>
42
43     <build>
44         <plugins>
45             <plugin>
46                 <groupId>org.eclipse.tycho.extras</groupId>
47                 <artifactId>tycho-p2-extras-plugin</artifactId>
48                 <version>1.0.0</version>
49             </plugin>
50             <plugin>
51                 <groupId>org.reficio</groupId>
52                 <artifactId>p2-maven-plugin</artifactId>
53                 <version>1.2.0</version>
54                 <executions>
55                     <execution>
56                         <id>default-cli</id>
57                         <!-- QUICK-START EXAMPLE -->
58                         <!--
59                         This is the default quick-start configuration.
60
61                         Expected behavior:
62                           - specified dependencies will be fetched
63                           - transitive dependencies will be fetched (no default exclusions)
64                           - jars containing source source code will NOT be fetched
65                           - jars that are NOT OSGi bundles will be "bundled" using bnd tool,
66                             if you specify instructions for these jars they will be APPLIED
67                           - jars that are OSGi bundles will be simply included
68                             if you specify instructions for these jars they will be IGNORED (see <override> option)
69                           - p2 site will be generated
70
71                         How the instructions works:
72                           - instructions are applied only to the root artifact that you specify!
73                           - instructions are not applied to the TRANSITIVE dependencies!
74                           - transitive dependencies are never overridden (see <override> option)
75                           - transitive dependencies are bundled using the default instructions:
76                               <instructions>
77                                   <Import-Package>*;resolution:=optional</Import-Package>
78                                   <Export-Package>*</Export-Package>
79                               </instructions>
80                           - other instructions, such as, Bundle-SymbolicName, Bundle-Name, Bundle-Version, etc.
81                             are calculated according to the following rules:
82                             http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html
83                           - if you specify any instructions they will be applied only if
84                             the jar is not already an OSGi bundle - otherwise you have to use the override
85                             option - please see the /examples/override/pom.xml example
86
87                         The following definition of an artifact:
88                             <artifact>
89                                 <id>commons-io:commons-io:2.1</id>
90                             </artifact>
91
92                         is an equivalent of the following definition:
93                             <artifact>
94                                 <id>commons-io:commons-io:2.1</id>
95                                 <transitive>true</transitive>
96                                 <source>false</source>
97                                 <override>false</override>
98                                 <instructions>
99                                     <Import-Package>*;resolution:=optional</Import-Package>
100                                     <Export-Package>*</Export-Package>
101                                 </instructions>
102                                 <excludes/>
103                             </artifact>
104
105                         To run the example please invoke: mvn p2:site
106                         -->
107                         <configuration>
108                             <artifacts>
109                                 <artifact>
110                                     <id>org.antlr:antlr-runtime:${antlr.version}</id>
111                                     <source>true</source>
112                                     <instructions>
113                                         <Bundle-SymbolicName>org.antlr.runtime</Bundle-SymbolicName>
114                                         <Bundle-Version>${antlr.version}</Bundle-Version>
115                                         <Export-Package>*;version="${antlr.version}"</Export-Package>
116                                     </instructions>                                    
117                                 </artifact>
118                                 <artifact>
119                                     <id>org.apache.lucene:lucene-core:${lucene.version}</id>
120                                     <source>true</source>
121                                     <instructions>
122                                         <Bundle-SymbolicName>${lucene.prefix}.core</Bundle-SymbolicName>
123                                         <Bundle-Version>${lucene.version.actual}</Bundle-Version>
124                                         <Export-Package>*;version="${lucene.version}"</Export-Package>
125                                     </instructions>
126                                 </artifact>
127                                 <artifact>
128                                     <id>org.apache.lucene:lucene-queries:${lucene.version}</id>
129                                     <source>true</source>
130                                     <instructions>
131                                         <Bundle-SymbolicName>${lucene.prefix}.queries</Bundle-SymbolicName>
132                                         <Bundle-Version>${lucene.version.actual}</Bundle-Version>
133                                         <Require-Bundle>${lucene.prefix}.core;bundle-version="${lucene.version}"</Require-Bundle>
134                                         <Export-Package>*;version="${lucene.version}"</Export-Package>
135                                         <Import-Package>!org.apache.lucene.*,*;resolution:=optional</Import-Package>
136                                     </instructions>
137                                 </artifact>
138                                 <artifact>
139                                     <id>org.apache.lucene:lucene-sandbox:${lucene.version}</id>
140                                     <source>true</source>
141                                     <instructions>
142                                         <Bundle-SymbolicName>${lucene.prefix}.sandbox</Bundle-SymbolicName>
143                                         <Bundle-Version>${lucene.version.actual}</Bundle-Version>
144                                         <Require-Bundle>${lucene.prefix}.core;bundle-version="${lucene.version}"</Require-Bundle>
145                                         <Export-Package>*;version="${lucene.version}"</Export-Package>
146                                         <Import-Package>!org.apache.lucene.*,*;resolution:=optional</Import-Package>
147                                     </instructions>
148                                 </artifact>
149                                 <artifact>
150                                     <id>org.apache.lucene:lucene-analyzers-common:${lucene.version}</id>
151                                     <source>true</source>
152                                     <instructions>
153                                         <Bundle-SymbolicName>${lucene.prefix}.analyzers-common</Bundle-SymbolicName>
154                                         <Bundle-Version>${lucene.version.actual}</Bundle-Version>
155                                         <Require-Bundle>${lucene.prefix}.core;bundle-version="${lucene.version}"</Require-Bundle>
156                                         <Export-Package>*;version="${lucene.version}"</Export-Package>
157                                         <Import-Package>!org.apache.lucene.*,*;resolution:=optional</Import-Package>
158                                     </instructions>
159                                 </artifact>
160                                 <artifact>
161                                     <id>org.apache.lucene:lucene-queryparser:${lucene.version}</id>
162                                     <source>true</source>
163                                     <instructions>
164                                         <Bundle-SymbolicName>${lucene.prefix}.queryparser</Bundle-SymbolicName>
165                                         <Bundle-Version>${lucene.version.actual}</Bundle-Version>
166                                         <Require-Bundle>${lucene.prefix}.core;bundle-version="${lucene.version}",${lucene.prefix}.queries;bundle-version="${lucene.version}",${lucene.prefix}.sandbox;bundle-version="${lucene.version}"</Require-Bundle>
167                                         <Export-Package>*;version="${lucene.version}"</Export-Package>
168                                         <Import-Package>!org.apache.lucene.*,*;resolution:=optional</Import-Package>
169                                     </instructions>
170                                 </artifact>
171                                 <artifact>
172                                     <id>jaxen:jaxen:${jaxen.version}</id>
173                                     <source>true</source>
174                                 </artifact>
175                                 <artifact>
176                                     <id>org.jdom:jdom2:${jdom.version}</id>
177                                     <source>true</source>
178                                     <instructions>
179                                         <Bundle-SymbolicName>org.jdom2</Bundle-SymbolicName>
180                                         <Bundle-Version>${jdom.version.actual}</Bundle-Version>
181                                         <Export-Package>*;version="${jdom.version}"</Export-Package>
182                                     </instructions>
183                                 </artifact>
184                                 <artifact>
185                                     <id>org.jfree:jfreechart:1.0.19</id>
186                                     <source>true</source>
187                                     <instructions>
188                                         <Bundle-SymbolicName>org.jfree.jchart</Bundle-SymbolicName>
189                                     </instructions>
190                                 </artifact>
191                                 <!--
192                                 <artifact>
193                                     <id>org.ow2.asm:asm:5.0.4</id>
194                                     <source>true</source>
195                                     <override>true</override>
196                                     <instructions>
197                                         <Bundle-SymbolicName>org.objectweb.asm5</Bundle-SymbolicName>
198                                     </instructions>
199                                 </artifact>
200                                 -->
201                                 <artifact>
202                                     <id>net.sf.supercsv:super-csv:2.4.0</id>
203                                     <source>true</source>
204                                     <override>true</override>
205                                     <instructions>
206                                         <Bundle-SymbolicName>org.supercsv</Bundle-SymbolicName>
207                                     </instructions>
208                                 </artifact>
209                                 <artifact>
210                                     <id>org.ini4j:ini4j:0.5.4</id>
211                                     <source>true</source>
212                                 </artifact>
213                                 <artifact>
214                                     <!-- Needed by Apache POI 3.15 -->
215                                     <id>commons-codec:commons-codec:1.10</id>
216                                     <source>true</source>
217                                 </artifact>
218                                 <artifact>
219                                     <id>commons-collections:commons-collections:3.2.2</id>
220                                     <source>true</source>
221                                 </artifact>
222                                 <artifact>
223                                     <!-- Needed by Apache POI 3.15 -->
224                                     <id>org.apache.commons:commons-collections4:4.1</id>
225                                     <source>true</source>
226                                 </artifact>
227                                 <artifact>
228                                     <id>org.apache.commons:commons-compress:1.18</id>
229                                     <source>true</source>
230                                     <override>true</override>
231                                     <instructions>
232                                         <Bundle-SymbolicName>org.apache.commons.compress</Bundle-SymbolicName>
233                                     </instructions>
234                                 </artifact>
235                                 <artifact>
236                                     <id>commons-lang:commons-lang:2.6</id>
237                                     <source>true</source>
238                                 </artifact>
239                                 <artifact>
240                                     <!-- Needed by Apache POI 3.15 -->
241                                     <id>commons-logging:commons-logging:1.2</id>
242                                     <source>true</source>
243                                 </artifact>
244                                 <artifact>
245                                     <id>commons-io:commons-io:1.4</id>
246                                     <source>true</source>
247                                 </artifact>
248                                 <artifact>
249                                     <id>org.apache.commons:commons-math3:3.6.1</id>
250                                     <source>true</source>
251                                 </artifact>
252
253                                 <artifact>
254                                     <id>org.apache.pdfbox:pdfbox:2.0.3</id>
255                                     <source>true</source>
256                                 </artifact>
257                                 <artifact>
258                                     <id>org.apache.pdfbox:fontbox:2.0.3</id>
259                                     <source>true</source>
260                                 </artifact>
261                                 <artifact>
262                                     <id>org.apache.pdfbox:xmpbox:2.0.3</id>
263                                     <source>true</source>
264                                 </artifact>
265                                 <!-- Needed by Apache POI 3.15, however these are included in third-party repository manually -->
266                                 <!--
267                                 <artifact>
268                                     <id>org.apache.xmlbeans:xmlbeans:2.6.0</id>
269                                     <source>true</source>
270                                 </artifact>
271                                 <artifact>
272                                     <id>com.github.virtuald:curvesapi:1.04</id>
273                                     <source>true</source>
274                                 </artifact>
275                                 -->
276                                 <artifact>
277                                     <id>log4j:log4j:1.2.17</id>
278                                     <source>true</source>
279                                     <override>true</override>
280                                     <instructions>
281                                         <Bundle-SymbolicName>org.apache.log4j</Bundle-SymbolicName>
282                                     </instructions>
283                                 </artifact>
284                                 <artifact>
285                                     <id>net.sf.ucanaccess:ucanaccess:3.0.7</id>
286                                     <source>true</source>
287                                     <instructions>
288                                         <Bundle-SymbolicName>net.ucanaccess</Bundle-SymbolicName>
289                                     </instructions>
290                                 </artifact>
291                                 <artifact>
292                                     <id>it.unimi.dsi:fastutil:7.2.1</id>
293                                     <source>true</source>
294                                 </artifact>
295                                 <artifact>
296                                     <id>org.eclipse.collections:eclipse-collections-api:${eclipse.collections.version}</id>
297                                     <override>true</override>
298                                     <source>true</source>
299                                     <instructions>
300                                         <Export-Package>org.eclipse.collections.*</Export-Package>
301                                     </instructions>
302                                 </artifact>
303                                 <artifact>
304                                     <id>org.eclipse.collections:eclipse-collections:${eclipse.collections.version}</id>
305                                     <source>true</source>
306                                     <instructions>
307                                         <Require-Bundle>org.eclipse.collections.eclipse-collections-api;bundle-version="${eclipse.collections.version}"</Require-Bundle>
308                                         <Import-Package>!org.eclipse.*,!sun.misc.*,*;resolution:=optional</Import-Package>
309                                     </instructions>
310                                 </artifact>
311                                 <artifact>
312                                     <id>net.sf.trove4j:trove4j:3.0.3</id>
313                                     <source>true</source>
314                                     <instructions>
315                                         <Bundle-Name>GNU Trove 3</Bundle-Name>
316                                         <Bundle-SymbolicName>gnu.trove3</Bundle-SymbolicName>
317                                     </instructions>
318                                 </artifact>
319                                 <artifact>
320                                     <id>org.freemarker:freemarker:2.3.23</id>
321                                     <source>true</source>
322                                     <override>true</override>
323                                     <instructions>
324                                         <Bundle-SymbolicName>freemarker</Bundle-SymbolicName>
325                                     </instructions>
326                                 </artifact>
327                                 <artifact>
328                                     <id>com.lowagie:itext:2.1.7</id>
329                                     <source>true</source>
330                                     <instructions>
331                                         <Bundle-SymbolicName>com.lowagie.text</Bundle-SymbolicName>
332                                         <Bundle-Version>${itext.version.actual}</Bundle-Version>
333                                     </instructions>
334                                 </artifact>
335                                 <artifact>
336                                     <id>org.mozilla:rhino:1.7.7.1</id>
337                                     <source>true</source>
338                                 </artifact>
339                                 <!-- org.eclipse.epp.mpc.core.win32 plug-in requires 4.1.0 -->
340                                 <artifact>
341                                     <id>net.java.dev.jna:jna:4.1.0</id>
342                                     <source>true</source>
343                                 </artifact>
344                                  <!-- org.eclipse.epp.mpc.core.win32 plug-in requires 4.1.0 -->
345                                 <artifact>
346                                     <id>net.java.dev.jna:jna-platform:4.1.0</id>
347                                     <source>true</source>
348                                 </artifact>
349                                 <artifact>
350                                     <id>net.java.dev.jna:jna:4.3.0</id>
351                                     <source>true</source>
352                                 </artifact>
353                                 <artifact>
354                                     <id>net.java.dev.jna:jna-platform:4.3.0</id>
355                                     <source>true</source>
356                                 </artifact>
357                                 <artifact>
358                                     <id>javax.servlet:javax.servlet-api:${javax.version}</id>
359                                     <source>true</source>
360                                 </artifact>
361                                 <artifact>
362                                     <id>com.fasterxml.jackson.core:jackson-core:${jackson.version}</id>
363                                     <source>true</source>
364                                 </artifact>
365                                 <artifact>
366                                     <id>com.fasterxml.jackson.core:jackson-annotations:${jackson.version}</id>
367                                     <source>true</source>
368                                 </artifact>
369                                 <artifact>
370                                     <id>com.fasterxml.jackson.core:jackson-databind:${jackson.version}</id>
371                                     <source>true</source>
372                                     <excludes>
373                                         <exclude>com.fasterxml.jackson.*</exclude>
374                                     </excludes>
375                                 </artifact>
376                                 <artifact>
377                                     <id>com.fasterxml.jackson.dataformat:jackson-dataformat-csv:${jackson.version}</id>
378                                     <source>true</source>
379                                     <excludes>
380                                         <exclude>com.fasterxml.jackson.*</exclude>
381                                     </excludes>
382                                 </artifact>
383                                 <artifact>
384                                     <id>com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${jackson.version}</id>
385                                     <source>true</source>
386                                     <excludes>
387                                         <exclude>com.fasterxml.jackson.*</exclude>
388                                     </excludes>
389                                 </artifact>
390                                 <artifact>
391                                     <id>com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jackson.version}</id>
392                                     <source>true</source>
393                                     <excludes>
394                                         <exclude>com.fasterxml.jackson.*</exclude>
395                                     </excludes>
396                                 </artifact>
397                                 <artifact>
398                                     <id>com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:${jackson.version}</id>
399                                     <source>true</source>
400                                     <excludes>
401                                         <exclude>com.fasterxml.jackson.*</exclude>
402                                     </excludes>
403                                 </artifact>
404                                 <artifact>
405                                     <id>com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:${jackson.version}</id>
406                                     <source>true</source>
407                                     <excludes>
408                                         <exclude>com.fasterxml.jackson.*</exclude>
409                                     </excludes>
410                                 </artifact>
411                                 <artifact>
412                                     <id>com.fasterxml.jackson.module:jackson-module-jaxb-annotations:${jackson.version}</id>
413                                     <source>true</source>
414                                     <excludes>
415                                         <exclude>com.fasterxml.jackson.*</exclude>
416                                     </excludes>
417                                 </artifact>
418                                 <artifact>
419                                     <id>org.slf4j:slf4j-api:${slf4j.version}</id>
420                                     <source>true</source>
421                                     <override>true</override>
422                                     <instructions>
423                                         <Bundle-Name>SLF4J API Module</Bundle-Name>
424                                         <Bundle-Version>${slf4j.version.actual}</Bundle-Version>
425                                         <Bundle-SymbolicName>org.slf4j.api</Bundle-SymbolicName>
426                                         <Export-Package>*;version=${slf4j.version}</Export-Package>
427                                     </instructions>
428                                 </artifact>
429                                 <artifact>
430                                     <id>ch.qos.logback:logback-classic:1.2.3</id>
431                                     <source>true</source>
432                                     <override>true</override>
433                                 </artifact>
434                                 <artifact>
435                                     <id>com.koloboke:koloboke-compile:0.5.1</id>
436                                     <source>true</source>
437                                 </artifact>
438                                 <artifact>
439                                     <id>com.koloboke:koloboke-impl-common-jdk8:1.0.0</id>
440                                     <source>true</source>
441                                 </artifact>
442                                 <artifact>
443                                     <id>com.esotericsoftware:kryo:4.0.0</id>
444                                     <source>true</source>
445                                 </artifact>
446                                  <artifact>
447                                      <id>org.apache.aries.spifly:org.apache.aries.spifly.dynamic.bundle:1.0.14</id>
448                                      <source>true</source>
449                                  </artifact>
450                                 <artifact>
451                                     <id>org.glassfish.jersey.core:jersey-server:${jersey.version}</id>
452                                     <source>true</source>
453                                 </artifact>
454                                 <artifact>
455                                     <id>org.glassfish.jersey.core:jersey-client:${jersey.version}</id>
456                                     <source>true</source>
457                                 </artifact>
458                                 <artifact>
459                                     <id>org.glassfish.jersey.media:jersey-media-multipart:${jersey.version}</id>
460                                     <source>true</source>
461                                 </artifact>
462                                 <artifact>
463                                     <id>org.glassfish.jersey.media:jersey-media-json-jackson:${jersey.version}</id>
464                                     <source>true</source>
465                                     <excludes>
466                                         <exclude>com.fasterxml.jackson.*</exclude>
467                                     </excludes>
468                                 </artifact>
469                                 <artifact>
470                                     <id>org.glassfish.jersey.containers:jersey-container-servlet-core:${jersey.version}</id>
471                                     <source>true</source>
472                                 </artifact>
473                                 <artifact>
474                                     <id>org.jboss.windup.decompiler:decompiler-procyon:4.0.0.Beta1</id>
475                                     <source>true</source>
476                                 </artifact>
477                                 <artifact>
478                                     <id>org.jsoup:jsoup:1.11.3</id>
479                                     <source>true</source>
480                                 </artifact>
481                                 <artifact>
482                                     <id>org.yaml:snakeyaml:1.23</id>
483                                     <source>true</source>
484                                 </artifact>
485                                 <artifact>
486                                     <id>org.eclipse.jetty:jetty-servlets:9.4.5.v20170502</id>
487                                     <source>true</source>
488                                 </artifact>
489                                 <artifact>
490                                     <id>org.zeroturnaround:zt-exec:${zeroturnaround.version}</id>
491                                     <source>true</source>
492                                 </artifact>
493                                 <!-- Since 1.21.0 grpc, a manually set up plugin is provided in third-party repository.
494                                      Note: grpc-core, grpc-context, and grpc-stub (maybe others as well) must be bundled into same plug-in, since they contain split packages.
495                                 <artifact>
496                                     <id>io.grpc:io.grpc:${grpc.version}</id>
497                                     <source>true</source>
498                                 </artifact>
499                                 <artifact>
500                                     <id>io.grpc:grpc-netty:${grpc.version}</id>
501                                     <source>true</source>
502                                     <override>true</override>
503                                     <instructions>
504                                         <Require-Bundle>
505                                              io.netty.buffer;bundle-version="4.1.27",
506                                              io.netty.codec;bundle-version="4.1.27",
507                                              io.netty.codec-http;bundle-version="4.1.27",
508                                              io.netty.codec-http2;bundle-version="4.1.27",
509                                              io.netty.codec-socks;bundle-version="4.1.27",
510                                              io.netty.common;bundle-version="4.1.27",
511                                              io.netty.handler;bundle-version="4.1.27",
512                                              io.netty.handler-proxy;bundle-version="4.1.27",
513                                              io.netty.resolver;bundle-version="4.1.27",
514                                              io.netty.transport;bundle-version="4.1.27",
515                                              io.grpc
516                                         </Require-Bundle>
517                                         <Import-Package>!io.netty.*,*;resolution:=optional</Import-Package>
518                                         <Require-Capability>
519                                             osgi.extender;
520                                                 filter:="(osgi.extender=osgi.serviceloader.registrar)"
521                                         </Require-Capability>
522                                         <Provide-Capability>
523                                             osgi.serviceloader;
524                                                 osgi.serviceloader=io.grpc.ServerProvider,
525                                             osgi.serviceloader;
526                                                 osgi.serviceloader=io.grpc.ManagedChannelProvider
527                                         </Provide-Capability>
528                                         <Bundle-Version>${grpc.version.actual}</Bundle-Version>
529                                     </instructions>
530                                 </artifact>
531                                 <artifact>
532                                     <id>com.google.protobuf:protobuf-java:${protobuf.version}</id>
533                                     <source>true</source>
534                                     <override>true</override>
535                                     <instructions>
536                                         <Import-Package>!sun.misc.*,*;resolution:=optional</Import-Package>
537                                     </instructions>
538                                 </artifact>
539                                 -->
540                                 <!-- grpc 1.21.0 dependencies -->
541                                 <artifact>
542                                     <id>io.opencensus:opencensus-api:0.21.0</id>
543                                     <source>true</source>
544                                 </artifact>
545                                 <artifact>
546                                     <id>com.google.code.gson:gson:2.7</id>
547                                     <source>true</source>
548                                 </artifact>
549                                 <artifact>
550                                     <id>com.google.android:annotations:4.1.1.4</id>
551                                     <source>true</source>
552                                 </artifact>
553                                 <artifact>
554                                     <id>io.opencensus:opencensus-contrib-grpc-metrics:0.21.0</id>
555                                     <source>true</source>
556                                 </artifact>
557                                 <artifact>
558                                     <id>com.google.protobuf:protobuf-java:${protobuf.version}</id>
559                                     <source>true</source>
560                                 </artifact>
561                                 <artifact>
562                                     <id>com.google.api.grpc:proto-google-common-protos:1.12.0</id>
563                                     <source>true</source>
564                                 </artifact>
565                                 <artifact>
566                                     <id>com.google.errorprone:error_prone_annotations:2.3.2</id>
567                                     <source>true</source>
568                                 </artifact>
569
570                                 <!-- Netty is needed by com.impossibl.pgjdbc-ng:pgjdbc-ng:0.7.1 -->
571                                 <artifact>
572                                     <id>io.netty:netty-buffer:4.1.35.Final</id>
573                                     <source>true</source>
574                                     <transitive>true</transitive>
575                                 </artifact>
576                                 <artifact>
577                                     <id>io.netty:netty-codec:4.1.35.Final</id>
578                                     <source>true</source>
579                                     <transitive>true</transitive>
580                                 </artifact>
581                                 <artifact>
582                                     <id>io.netty:netty-codec-http:4.1.35.Final</id>
583                                     <source>true</source>
584                                     <transitive>true</transitive>
585                                 </artifact>
586                                 <artifact>
587                                     <id>io.netty:netty-codec-http2:4.1.35.Final</id>
588                                     <source>true</source>
589                                     <transitive>true</transitive>
590                                 </artifact>
591                                 <artifact>
592                                     <id>io.netty:netty-codec-socks:4.1.35.Final</id>
593                                     <source>true</source>
594                                     <transitive>true</transitive>
595                                 </artifact>
596                                 <artifact>
597                                     <id>io.netty:netty-common:4.1.35.Final</id>
598                                     <source>true</source>
599                                     <transitive>true</transitive>
600                                 </artifact>
601                                 <artifact>
602                                     <id>io.netty:netty-handler:4.1.35.Final</id>
603                                     <source>true</source>
604                                     <transitive>true</transitive>
605                                 </artifact>
606                                 <artifact>
607                                     <id>io.netty:netty-handler-proxy:4.1.35.Final</id>
608                                     <source>true</source>
609                                     <transitive>true</transitive>
610                                 </artifact>
611                                 <artifact>
612                                     <id>io.netty:netty-resolver:4.1.35.Final</id>
613                                     <source>true</source>
614                                     <transitive>true</transitive>
615                                 </artifact>
616                                 <artifact>
617                                     <id>io.netty:netty-transport:4.1.35.Final</id>
618                                     <source>true</source>
619                                     <transitive>true</transitive>
620                                 </artifact>
621                                 <artifact>
622                                     <id>com.impossibl.pgjdbc-ng:pgjdbc-ng:0.7.1</id>
623                                     <source>true</source>
624                                     <transitive>false</transitive>
625                                 </artifact>
626                                 <artifact>
627                                     <id>com.github.ben-manes.caffeine:caffeine:${caffeine.version}</id>
628                                     <source>true</source>
629                                     <override>true</override>
630                                     <instructions>
631                                         <Bundle-SymbolicName>com.github.benmanes.caffeine</Bundle-SymbolicName>
632                                     </instructions>
633                                 </artifact>
634                                 <artifact>
635                                     <id>net.jcip:jcip-annotations:1.0</id>
636                                     <source>true</source>
637                                 </artifact>
638                             </artifacts>
639                         </configuration>
640                     </execution>
641                 </executions>
642             </plugin>
643
644             <plugin>
645                 <groupId>org.mortbay.jetty</groupId>
646                 <artifactId>jetty-maven-plugin</artifactId>
647                 <version>8.1.5.v20120716</version>
648                 <configuration>
649                     <scanIntervalSeconds>10</scanIntervalSeconds>
650                     <webAppSourceDirectory>${basedir}/target/repository/</webAppSourceDirectory>
651                     <webApp>
652                         <contextPath>/site</contextPath>
653                     </webApp>
654                 </configuration>
655             </plugin>
656         </plugins>
657     </build>
658
659 </project>