buf
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>build.buf</groupId>
<artifactId>buf</artifactId>
<version>1.70.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>build.buf</groupId>
<artifactId>buf</artifactId>
<version>1.70.0</version>
<packaging>pom</packaging>
<name>buf CLI</name>
<url>https://github.com/bufbuild/buf</url>
<description>The buf CLI is a tool for working with Protocol Buffers.</description>
<developers>
<developer>
<id>bufbuild</id>
<name>Buf</name>
<email>dev@buf.build</email>
<url>https://buf.build/</url>
<organization>Buf Technologies, Inc.</organization>
<organizationUrl>https://buf.build/</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<developerConnection>scm:git:https://github.com/bufbuild/buf-maven-publish.git</developerConnection>
<url>https://github.com/bufbuild/buf-maven-publish</url>
<tag>v1.70.0</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<buf.version>1.70.0</buf.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.13.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.6.1</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<executions>
<execution>
<id>fetch-darwin-arm64</id>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/bufbuild/buf/releases/download/v${buf.version}/buf-Darwin-arm64</url>
</configuration>
</execution>
<execution>
<id>fetch-darwin-x86_64</id>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/bufbuild/buf/releases/download/v${buf.version}/buf-Darwin-x86_64</url>
</configuration>
</execution>
<execution>
<id>fetch-linux-aarch64</id>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/bufbuild/buf/releases/download/v${buf.version}/buf-Linux-aarch64</url>
</configuration>
</execution>
<execution>
<id>fetch-linux-x86_64</id>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/bufbuild/buf/releases/download/v${buf.version}/buf-Linux-x86_64</url>
</configuration>
</execution>
<execution>
<id>fetch-linux-armv7</id>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/bufbuild/buf/releases/download/v${buf.version}/buf-Linux-armv7</url>
</configuration>
</execution>
<execution>
<id>fetch-windows-arm64</id>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/bufbuild/buf/releases/download/v${buf.version}/buf-Windows-arm64.exe</url>
</configuration>
</execution>
<execution>
<id>fetch-windows-x86_64</id>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/bufbuild/buf/releases/download/v${buf.version}/buf-Windows-x86_64.exe</url>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<releaseProfiles>release</releaseProfiles>
<scmCommentPrefix>[skip ci] </scmCommentPrefix>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/buf-Darwin-arm64</file>
<type>exe</type>
<classifier>osx-aarch_64</classifier>
</artifact>
<artifact>
<file>${project.build.directory}/buf-Darwin-x86_64</file>
<type>exe</type>
<classifier>osx-x86_64</classifier>
</artifact>
<artifact>
<file>${project.build.directory}/buf-Linux-aarch64</file>
<type>exe</type>
<classifier>linux-aarch_64</classifier>
</artifact>
<artifact>
<file>${project.build.directory}/buf-Linux-x86_64</file>
<type>exe</type>
<classifier>linux-x86_64</classifier>
</artifact>
<artifact>
<file>${project.build.directory}/buf-Linux-armv7</file>
<type>exe</type>
<classifier>linux-arm_32</classifier>
</artifact>
<artifact>
<file>${project.build.directory}/buf-Windows-arm64.exe</file>
<type>exe</type>
<classifier>windows-aarch_64</classifier>
</artifact>
<artifact>
<file>${project.build.directory}/buf-Windows-x86_64.exe</file>
<type>exe</type>
<classifier>windows-x86_64</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<signer>bc</signer>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>