Skip to content

Commit

Permalink
Move Develocity config to main pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
ppkarwasz committed Oct 4, 2024
1 parent d1c2489 commit 944b2f7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 16 deletions.
16 changes: 0 additions & 16 deletions flume-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ limitations under the License.
<commons-text.version>1.10.0</commons-text.version>
<curator.version>5.1.0</curator.version>
<derby.version>10.14.2.0</derby.version>
<develocity-maven-plugin.version>1.22.2</develocity-maven-plugin.version>
<develocity-user-data-extension.version>2.0.1</develocity-user-data-extension.version>
<dropwizard-metrics.version>4.1.18</dropwizard-metrics.version>
<fasterxml.jackson.version>2.13.2</fasterxml.jackson.version>
<fasterxml.jackson.databind.version>2.13.2.1</fasterxml.jackson.databind.version>
Expand Down Expand Up @@ -464,13 +462,6 @@ limitations under the License.
<pluginManagement>
<plugins>

<!-- Fake entry to be upgraded by Dependabot -->
<plugin>
<groupId>com.gradle</groupId>
<artifactId>develocity-maven-extension</artifactId>
<version>${develocity-maven-plugin.version}</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
Expand Down Expand Up @@ -827,13 +818,6 @@ limitations under the License.
<version>${commons-text.version}</version>
</dependency>

<!-- Fake entry to be upgraded by Dependabot -->
<dependency>
<groupId>com.gradle</groupId>
<artifactId>common-custom-user-data-maven-extension</artifactId>
<version>${develocity-user-data-extension.version}</version>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ limitations under the License.

<name>Apache Flume Project</name>

<properties>
<!-- Versions of Develocity extensions used -->
<develocity-maven-plugin.version>1.22.2</develocity-maven-plugin.version>
<develocity-user-data-extension.version>2.0.1</develocity-user-data-extension.version>
</properties>

<modules>
<module>flume-bom</module>
<module>flume-parent</module>
Expand All @@ -52,4 +58,24 @@ limitations under the License.
<module>build-support</module>
</modules>

<dependencyManagement>
<dependencies>

<!-- Fake entry to be upgraded by Dependabot -->
<plugin>
<groupId>com.gradle</groupId>
<artifactId>develocity-maven-extension</artifactId>
<version>${develocity-maven-plugin.version}</version>
</plugin>

<!-- Fake entry to be upgraded by Dependabot -->
<dependency>
<groupId>com.gradle</groupId>
<artifactId>common-custom-user-data-maven-extension</artifactId>
<version>${develocity-user-data-extension.version}</version>
</dependency>

</dependencies>
</dependencyManagement>

</project>

0 comments on commit 944b2f7

Please sign in to comment.