Skip to content

Commit 7a2c1b3

Browse files
committed
Purge opencensus libraries from the BOM
These analytics libraries are used to collect metrics for applications. Users of SciJava-based applications do not want or need that, nor do we want dependent libraries doing it secretly.
1 parent 4f9919e commit 7a2c1b3

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

pom.xml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5277,6 +5277,15 @@
52775277
<groupId>com.google.api</groupId>
52785278
<artifactId>gax</artifactId>
52795279
<version>${com.google.api.gax.version}</version>
5280+
<exclusions>
5281+
<!--
5282+
Analytics libraries for collecting and transmitting app metrics.
5283+
-->
5284+
<exclusion>
5285+
<groupId>io.opencensus</groupId>
5286+
<artifactId>*</artifactId>
5287+
</exclusion>
5288+
</exclusions>
52805289
</dependency>
52815290
<dependency>
52825291
<groupId>com.google.api</groupId>
@@ -5338,6 +5347,15 @@
53385347
<groupId>com.google.cloud</groupId>
53395348
<artifactId>google-cloud-core-http</artifactId>
53405349
<version>${com.google.cloud.google-cloud-core-http.version}</version>
5350+
<exclusions>
5351+
<!--
5352+
Analytics libraries for collecting and transmitting app metrics.
5353+
-->
5354+
<exclusion>
5355+
<groupId>io.opencensus</groupId>
5356+
<artifactId>*</artifactId>
5357+
</exclusion>
5358+
</exclusions>
53415359
</dependency>
53425360
<dependency>
53435361
<groupId>com.google.cloud</groupId>
@@ -5348,18 +5366,45 @@
53485366
<groupId>com.google.cloud</groupId>
53495367
<artifactId>google-cloud-resourcemanager</artifactId>
53505368
<version>${com.google.cloud.google-cloud-resourcemanager.version}</version>
5369+
<exclusions>
5370+
<!--
5371+
Analytics libraries for collecting and transmitting app metrics.
5372+
-->
5373+
<exclusion>
5374+
<groupId>io.opencensus</groupId>
5375+
<artifactId>*</artifactId>
5376+
</exclusion>
5377+
</exclusions>
53515378
</dependency>
53525379
<dependency>
53535380
<groupId>com.google.cloud</groupId>
53545381
<artifactId>google-cloud-storage</artifactId>
53555382
<version>${com.google.cloud.google-cloud-storage.version}</version>
5383+
<exclusions>
5384+
<!--
5385+
Analytics libraries for collecting and transmitting app metrics.
5386+
-->
5387+
<exclusion>
5388+
<groupId>io.opencensus</groupId>
5389+
<artifactId>*</artifactId>
5390+
</exclusion>
5391+
</exclusions>
53565392
</dependency>
53575393

53585394
<!-- Google HTTP Client - https://github.com/googleapis/google-http-java-client -->
53595395
<dependency>
53605396
<groupId>com.google.http-client</groupId>
53615397
<artifactId>google-http-client</artifactId>
53625398
<version>${com.google.http-client.google-http-client.version}</version>
5399+
<exclusions>
5400+
<!--
5401+
Analytics libraries for collecting and transmitting app metrics.
5402+
-->
5403+
<exclusion>
5404+
<groupId>io.opencensus</groupId>
5405+
<artifactId>*</artifactId>
5406+
</exclusion>
5407+
</exclusions>
53635408
</dependency>
53645409
<dependency>
53655410
<groupId>com.google.http-client</groupId>

0 commit comments

Comments
 (0)