thriftc-jar
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.anirbanmu</groupId>
<artifactId>thriftc-jar</artifactId>
<version>0.22.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>io.github.anirbanmu</groupId>
<artifactId>thriftc-jar</artifactId>
<version>0.22.0</version>
<packaging>pom</packaging>
<name>thriftc-jar</name>
<description>
pre-compiled apache thrift compiler binaries, packaged as classified maven artifacts.
</description>
<url>https://github.com/anirbanmu/thriftc-maven-plugin</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<comments>applies to the build scripts and packaging in this repository</comments>
</license>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<comments>applies to the pre-compiled apache thrift compiler binaries</comments>
</license>
</licenses>
<developers>
<developer>
<name>Anirban Mukhopadhyay</name>
<url>https://github.com/anirbanmu</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/anirbanmu/thriftc-maven-plugin.git</connection>
<developerConnection>scm:git:ssh://github.com:anirbanmu/thriftc-maven-plugin.git</developerConnection>
<url>https://github.com/anirbanmu/thriftc-maven-plugin/tree/main</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputTimestamp>2026-04-11T06:08:27Z</project.build.outputTimestamp>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.6.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- one profile per platform; CI activates the right one per matrix job -->
<profiles>
<profile>
<id>linux-x86_64</id>
<build><plugins><plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions><execution>
<id>attach-linux-x86_64</id>
<phase>package</phase>
<goals><goal>attach-artifact</goal></goals>
<configuration><artifacts><artifact>
<file>${project.build.directory}/binaries/${project.artifactId}-${project.version}-linux-x86_64.exe</file>
<type>exe</type>
<classifier>linux-x86_64</classifier>
</artifact></artifacts></configuration>
</execution></executions>
</plugin></plugins></build>
</profile>
<profile>
<id>linux-aarch64</id>
<build><plugins><plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions><execution>
<id>attach-linux-aarch64</id>
<phase>package</phase>
<goals><goal>attach-artifact</goal></goals>
<configuration><artifacts><artifact>
<file>${project.build.directory}/binaries/${project.artifactId}-${project.version}-linux-aarch64.exe</file>
<type>exe</type>
<classifier>linux-aarch64</classifier>
</artifact></artifacts></configuration>
</execution></executions>
</plugin></plugins></build>
</profile>
<profile>
<id>darwin-x86_64</id>
<build><plugins><plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions><execution>
<id>attach-darwin-x86_64</id>
<phase>package</phase>
<goals><goal>attach-artifact</goal></goals>
<configuration><artifacts><artifact>
<file>${project.build.directory}/binaries/${project.artifactId}-${project.version}-darwin-x86_64.exe</file>
<type>exe</type>
<classifier>darwin-x86_64</classifier>
</artifact></artifacts></configuration>
</execution></executions>
</plugin></plugins></build>
</profile>
<profile>
<id>darwin-aarch64</id>
<build><plugins><plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions><execution>
<id>attach-darwin-aarch64</id>
<phase>package</phase>
<goals><goal>attach-artifact</goal></goals>
<configuration><artifacts><artifact>
<file>${project.build.directory}/binaries/${project.artifactId}-${project.version}-darwin-aarch64.exe</file>
<type>exe</type>
<classifier>darwin-aarch64</classifier>
</artifact></artifacts></configuration>
</execution></executions>
</plugin></plugins></build>
</profile>
<profile>
<id>windows-x86_64</id>
<build><plugins><plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions><execution>
<id>attach-windows-x86_64</id>
<phase>package</phase>
<goals><goal>attach-artifact</goal></goals>
<configuration><artifacts><artifact>
<file>${project.build.directory}/binaries/${project.artifactId}-${project.version}-windows-x86_64.exe</file>
<type>exe</type>
<classifier>windows-x86_64</classifier>
</artifact></artifacts></configuration>
</execution></executions>
</plugin></plugins></build>
</profile>
<profile>
<id>attach-thrift-license</id>
<build><plugins><plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions><execution>
<id>attach-thrift-license</id>
<phase>package</phase>
<goals><goal>attach-artifact</goal></goals>
<configuration><artifacts>
<artifact>
<file>${project.build.directory}/binaries/THRIFT-LICENSE</file>
<type>txt</type>
<classifier>license</classifier>
</artifact>
<artifact>
<file>${project.build.directory}/binaries/THRIFT-NOTICE</file>
<type>txt</type>
<classifier>notice</classifier>
</artifact>
</artifacts></configuration>
</execution></executions>
</plugin></plugins></build>
</profile>
</profiles>
</project>