Skip to content

Commit

Permalink
update protoc dep scopeupdate scope of protoc dep
Browse files Browse the repository at this point in the history
  • Loading branch information
bischoffz committed Feb 3, 2024
1 parent 075c632 commit f6867c0
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions protobuf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
<!-- dependency versions -->
<taskit-protobuf.version>3.1.3-SNAPSHOT</taskit-protobuf.version>
<gcm.version>4.1.0-SNAPSHOT</gcm.version>
<protoc.version>3.24.4</protoc.version>
<jacoco-maven-plugin.version>0.8.9</jacoco-maven-plugin.version>
<protoc.version>3.25.2</protoc.version>
<jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version>
<junit-jupiter-engine.version>5.8.2</junit-jupiter-engine.version>
</properties>

Expand All @@ -78,11 +78,12 @@
<version>${gcm.version}</version>
<scope>provided</scope>
</dependency>
<!-- specified solely to alleviate a dependecy version conflict -->
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.5.1</version>
<groupId>com.google.protobuf</groupId>
<artifactId>protoc</artifactId>
<version>${protoc.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jacoco</groupId>
Expand All @@ -104,6 +105,16 @@
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.4.2</version>
</dependency>
</dependencies>
</dependencyManagement>

<!-- Configure Build -->
<build>
<resources>
Expand Down Expand Up @@ -143,7 +154,7 @@
<version>${maven-dependency-plugin.version}</version>
<executions>
<execution>
<?m2e execute onConfiguration?>
<?m2e execute onConfiguration onIncremental?>
<id>unpack-protos</id>
<phase>generate-sources</phase>
<goals>
Expand Down Expand Up @@ -194,7 +205,7 @@
<version>${maven-replacer-plugin.version}</version>
<executions>
<execution>
<?m2e execute onConfiguration,onIncremental?>
<?m2e execute onConfiguration onIncremental?>
<id>replace-warnings-in-gen-files</id>
<phase>process-sources</phase>
<goals>
Expand Down

0 comments on commit f6867c0

Please sign in to comment.