flatc-windows-x86_64
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.shinanca</groupId> <artifactId>flatc-windows-x86_64</artifactId> <version>1.12.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> <parent> <artifactId>flatc</artifactId> <groupId>com.github.shinanca</groupId> <version>1.0</version> </parent> <name>FlatBuffers Compiler Binaries (Windows x86-64)</name> <artifactId>flatc-windows-x86_64</artifactId> <version>1.12.0</version> <packaging>pom</packaging> <properties> <executable.path>${project.basedir}/flatc</executable.path> </properties> <build> <plugins> <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>${executable.path}</file> <type>exe</type> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>