MotionTragic/ExampleVendorJson.json
nobody5050 1599355b19
Some checks failed
CI / Build - ${{ matrix.artifact-name }} (Arm32, -Ponlylinuxarm32, wpilib/raspbian-cross-ubuntu:bookworm-22.04) (push) Has been cancelled
CI / Build - ${{ matrix.artifact-name }} (Arm64, -Ponlylinuxarm64, wpilib/aarch64-cross-ubuntu:bookworm-22.04) (push) Has been cancelled
CI / Build - ${{ matrix.artifact-name }} (Athena, -Ponlylinuxathena, wpilib/roborio-cross-ubuntu:2025-22.04) (push) Has been cancelled
CI / Build - ${{ matrix.artifact-name }} (Linux, , wpilib/ubuntu-base:22.04) (push) Has been cancelled
CI / Build - ${{ matrix.artifact-name }} (aarch64, macOS, macos-14) (push) Has been cancelled
CI / Build - ${{ matrix.artifact-name }} (x64, Win64, windows-2022) (push) Has been cancelled
CI / Combine (push) Has been cancelled
Remove x86 as a target from example json (#49)
2025-01-07 21:24:58 -08:00

72 lines
2.1 KiB
JSON

{
"fileName": "ExampleVendorJson.json",
"name": "ExampleVendorDep",
"version": "${version}",
"frcYear": "2025",
"uuid": "Generate A Unique GUID https://guidgenerator.com/online-guid-generator.aspx and insert it here", This line is to purposely make this fail to parse
"mavenUrls": [
"ThisNeedsToBeTheRootMavenUrl"
],
"jsonUrl": "InsertSomeUrlHere",
"javaDependencies": [
{
"groupId": "${groupId}",
"artifactId": "${artifactId}-java",
"version": "${version}"
}
],
"jniDependencies": [
{
"groupId": "${groupId}",
"artifactId": "${artifactId}-driver",
"version": "${version}",
"skipInvalidPlatforms": true,
"isJar": false,
"validPlatforms": [
"windowsx86-64",
"linuxarm64",
"linuxx86-64",
"linuxathena",
"linuxarm32",
"osxuniversal"
]
}
],
"cppDependencies": [
{
"groupId": "${groupId}",
"artifactId": "${artifactId}-cpp",
"version": "${version}",
"libName": "Vendor",
"headerClassifier": "headers",
"sharedLibrary": false,
"skipInvalidPlatforms": true,
"binaryPlatforms": [
"windowsx86-64",
"linuxarm64",
"linuxx86-64",
"linuxathena",
"linuxarm32",
"osxuniversal"
]
},
{
"groupId": "${groupId}",
"artifactId": "${artifactId}-driver",
"version": "${version}",
"libName": "VendorDriver",
"headerClassifier": "headers",
"sharedLibrary": false,
"skipInvalidPlatforms": true,
"binaryPlatforms": [
"windowsx86-64",
"linuxarm64",
"linuxx86-64",
"linuxathena",
"linuxarm32",
"osxuniversal"
]
}
]
}