├── .github └── workflows │ └── maven.yml ├── AUTHORS ├── CHANGES ├── CommonAPI-Examples ├── .gitignore ├── AUTHORS ├── E01HelloWorld │ ├── CMakeLists.txt │ ├── README │ ├── commonapi4dbus.ini │ ├── commonapi4someip.ini │ ├── fidl │ │ ├── E01HelloWorld-SomeIP.fdepl │ │ └── E01HelloWorld.fidl │ ├── src │ │ ├── E01HelloWorldClient.cpp │ │ ├── E01HelloWorldService.cpp │ │ ├── E01HelloWorldStubImpl.cpp │ │ └── E01HelloWorldStubImpl.hpp │ ├── vsomeip-client.json │ ├── vsomeip-local.json │ └── vsomeip-service.json ├── E02Attributes │ ├── CMakeLists.txt │ ├── README │ ├── commonapi4someip.ini │ ├── fidl │ │ ├── E02Attributes-DBus.fdepl │ │ ├── E02Attributes-SomeIP.fdepl │ │ └── E02Attributes.fidl │ ├── src │ │ ├── E02AttributesClient.cpp │ │ ├── E02AttributesService.cpp │ │ ├── E02AttributesStubImpl.cpp │ │ └── E02AttributesStubImpl.hpp │ ├── vsomeip-client.json │ ├── vsomeip-local.json │ └── vsomeip-service.json ├── E03Methods │ ├── CMakeLists.txt │ ├── README │ ├── commonapi4someip.ini │ ├── fidl │ │ ├── E03Methods-DBus.fdepl │ │ ├── E03Methods-SomeIP.fdepl │ │ └── E03Methods.fidl │ ├── src │ │ ├── E03MethodsClient.cpp │ │ ├── E03MethodsService.cpp │ │ ├── E03MethodsStubImpl.cpp │ │ └── E03MethodsStubImpl.hpp │ ├── vsomeip-client.json │ ├── vsomeip-local.json │ └── vsomeip-service.json ├── E04PhoneBook │ ├── CMakeLists.txt │ ├── README │ ├── commonapi4dbus.ini │ ├── commonapi4someip.ini │ ├── fidl │ │ ├── E04PhoneBook-DBus.fdepl │ │ ├── E04PhoneBook-SomeIP.fdepl │ │ └── E04PhoneBook.fidl │ ├── src │ │ ├── E04PhoneBookClient.cpp │ │ ├── E04PhoneBookService.cpp │ │ ├── E04PhoneBookStubImpl.cpp │ │ └── E04PhoneBookStubImpl.hpp │ ├── vsomeip-client.json │ ├── vsomeip-local.json │ └── vsomeip-service.json ├── E05Manager │ ├── CMakeLists.txt │ ├── README │ ├── commonapi4dbus.ini │ ├── commonapi4someip.ini │ ├── fidl │ │ ├── E05Manager-SomeIP.fdepl │ │ └── E05Manager.fidl │ ├── src │ │ ├── E05DeviceStubImpl.cpp │ │ ├── E05DeviceStubImpl.hpp │ │ ├── E05ManagerClient.cpp │ │ ├── E05ManagerService.cpp │ │ ├── E05ManagerStubImpl.cpp │ │ ├── E05ManagerStubImpl.hpp │ │ ├── E05SpecialDeviceStubImpl.cpp │ │ └── E05SpecialDeviceStubImpl.hpp │ ├── vsomeip-client.json │ ├── vsomeip-local.json │ └── vsomeip-service.json ├── E06Unions │ ├── CMakeLists.txt │ ├── README │ ├── commonapi4dbus.ini │ ├── commonapi4someip.ini │ ├── fidl │ │ ├── E06Unions-SomeIP.fdepl │ │ └── E06Unions.fidl │ ├── src │ │ ├── E06UnionsClient.cpp │ │ ├── E06UnionsService.cpp │ │ ├── E06UnionsStubImpl.cpp │ │ ├── E06UnionsStubImpl.hpp │ │ └── E06UnionsTypeUtils.hpp │ ├── vsomeip-client.json │ ├── vsomeip-local.json │ └── vsomeip-service.json ├── E07Mainloop │ ├── CMakeLists.txt │ ├── README │ ├── commonapi4dbus.ini │ ├── commonapi4someip.ini │ ├── fidl │ │ ├── E07Mainloop-SomeIP.fdepl │ │ └── E07Mainloop.fidl │ ├── src │ │ ├── E07MainloopClient.cpp │ │ ├── E07MainloopService.cpp │ │ ├── E07MainloopStubImpl.cpp │ │ └── E07MainloopStubImpl.hpp │ ├── vsomeip-client.json │ ├── vsomeip-local.json │ └── vsomeip-service.json ├── E08CrcProtectionP04 │ ├── CMakeLists.txt │ ├── README.md │ ├── commonapi4someip.ini │ ├── fidl │ │ ├── E08CrcProtectionP04-SomeIP.fdepl │ │ └── E08CrcProtectionP04.fidl │ ├── src │ │ ├── E08CrcProtectionP04Client.cpp │ │ ├── E08CrcProtectionP04Service.cpp │ │ ├── E08CrcProtectionP04StubImpl.cpp │ │ └── E08CrcProtectionP04StubImpl.hpp │ ├── vsomeip-client.json │ └── vsomeip-service.json ├── E09CrcProtectionP01 │ ├── CMakeLists.txt │ ├── README.md │ ├── commonapi4someip.ini │ ├── fidl │ │ ├── E09CrcProtectionP01-SomeIP.fdepl │ │ └── E09CrcProtectionP01.fidl │ ├── src │ │ ├── E09CrcProtectionP01Client.cpp │ │ ├── E09CrcProtectionP01Service.cpp │ │ ├── E09CrcProtectionP01StubImpl.cpp │ │ └── E09CrcProtectionP01StubImpl.hpp │ ├── vsomeip-client.json │ └── vsomeip-service.json ├── LICENSE └── README ├── INSTALL ├── LICENSE ├── README.md ├── docx ├── .gitignore ├── CommonAPICppSpecification ├── CommonAPICppUserGuide ├── Makefile ├── images │ ├── AsynchronousStubs.png │ ├── CodeGenerationFrancaIDL.png │ ├── CommonAPI-Dependencies.png │ ├── CommonAPIOverview01.png │ ├── CommonAPIOverview02.png │ ├── CommonAPIStructuringLibraries.png │ ├── CommonAPIWorkflow.png │ ├── Deployment.png │ ├── Diag_Attributes.png │ ├── Diag_GeneratedProxy.png │ ├── Diag_GeneratedStub.png │ ├── E04PhoneBook.png │ ├── E05Manager.png │ ├── EclipseBuildToolsSettings.png │ ├── EclipseCommonAPISettings01.png │ └── icons │ │ ├── important.png │ │ ├── logo.png │ │ └── note.png ├── index.html └── mainpagetests │ └── 01_mainpage.dox ├── org.genivi.commonapi.console.feature ├── build.properties ├── feature.xml └── pom.xml ├── org.genivi.commonapi.console.franca.feature ├── build.properties ├── feature.xml └── pom.xml ├── org.genivi.commonapi.console ├── META-INF │ └── MANIFEST.MF ├── about.mappings ├── build.properties ├── plugin.xml ├── pom.xml ├── schema │ ├── commands.exsd │ ├── optionGroups.exsd │ └── options.exsd └── src │ └── org │ └── genivi │ └── commonapi │ └── console │ ├── AbstractCommandLineHandler.java │ ├── CommandExecuter.java │ ├── CommandlineTool.java │ ├── ConsoleLogger.java │ ├── ICommandLineHandler.java │ └── internal │ ├── Activator.java │ ├── Application.java │ ├── HelpCommandHandler.java │ └── VersionCommandHandler.java ├── org.genivi.commonapi.core.cli.feature ├── build.properties ├── feature.xml └── pom.xml ├── org.genivi.commonapi.core.cli.product ├── category.xml ├── commonapi_console.product ├── pom.xml └── zip.excludes ├── org.genivi.commonapi.core.cli ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── plugin.xml ├── pom.xml └── src │ └── org │ └── genivi │ └── commonapi │ └── core │ └── cli │ ├── Activator.java │ ├── CommandLineHandler.java │ └── CommandlineToolMain.java ├── org.genivi.commonapi.core.feature ├── build.properties ├── feature.properties ├── feature.xml ├── license.html └── pom.xml ├── org.genivi.commonapi.core.releng └── pom.xml ├── org.genivi.commonapi.core.target ├── org.genivi.commonapi.core.target.target └── pom.xml ├── org.genivi.commonapi.core.ui ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── plugin.xml ├── pom.xml └── src │ └── org │ └── genivi │ └── commonapi │ └── core │ └── ui │ ├── CommandExecutableExtensionFactory.java │ ├── CommonApiUiPlugin.java │ ├── handler │ ├── CoreGenerationCommand.java │ └── GenerationCommand.java │ └── preferences │ ├── CommonAPIPreferencePage.java │ ├── FieldEditorOverlayPage.java │ ├── Messages.java │ ├── Messages.properties │ ├── MultiLineStringFieldEditor.java │ ├── PreferenceInitializer.java │ └── PropertyStore.java ├── org.genivi.commonapi.core.updatesite ├── Build CommonAPI-Core Tools.launch ├── Install CommonAPI-Core Tools.launch ├── category.xml ├── composite_update_site │ ├── compositeArtifacts.xml │ └── compositeContent.xml └── pom.xml ├── org.genivi.commonapi.core.validator.feature ├── build.properties ├── feature.properties ├── feature.xml ├── license.html └── pom.xml ├── org.genivi.commonapi.core.validator ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── plugin.xml ├── pom.xml └── src │ └── org │ └── genivi │ └── commonapi │ └── core │ └── validator │ ├── DeploymentValidatorCore.java │ ├── ValidatorCoreUi.java │ └── preferencepage │ └── ValidatorCorePreferencesPage.java ├── org.genivi.commonapi.core.verification ├── .gitignore ├── CMakeLists.txt ├── README ├── doxygen-test.cfg ├── fidl │ ├── ClientIdService.fidl │ ├── ti_advanced_bselective.fidl │ ├── ti_advanced_extended.fidl │ ├── ti_advanced_managed.fidl │ ├── ti_advanced_polymorph.fidl │ ├── ti_communication.fidl │ ├── ti_datatypes_advanced.fidl │ ├── ti_datatypes_combined.fidl │ ├── ti_datatypes_constants.fidl │ ├── ti_datatypes_deployment.fidl │ ├── ti_datatypes_derived.fidl │ ├── ti_datatypes_primitive.fidl │ ├── ti_performance_complex.fidl │ ├── ti_performance_primitive.fidl │ ├── ti_runtime.fidl │ ├── ti_stability_sp.fidl │ └── ti_threading.fidl └── src │ ├── AFExtended.cpp │ ├── AFManaged.cpp │ ├── AFPolymorph.cpp │ ├── AFSelective.cpp │ ├── CMAttributeSubscription.cpp │ ├── CMAttributes.cpp │ ├── CMBlockingCalls.cpp │ ├── CMBroadcasts.cpp │ ├── CMMethodCalls.cpp │ ├── DTAdvanced.cpp │ ├── DTCombined.cpp │ ├── DTConstants.cpp │ ├── DTDeployment.cpp │ ├── DTDerived.cpp │ ├── DTPrimitive.cpp │ ├── PFComplex.cpp │ ├── PFPrimitive.cpp │ ├── RTBuildProxiesAndStubs.cpp │ ├── RTLoadingRuntime.cpp │ ├── StabilitySP.cpp │ ├── THMainLoopIndependence.cpp │ ├── THMainLoopIntegration.cpp │ ├── THMainLoopTwoThreads.cpp │ ├── VSomeIPSec.cpp │ ├── conf │ ├── commonapi4dbus.ini.in │ └── commonapi4someip.ini.in │ ├── stub │ ├── AFExtendedStub.cpp │ ├── AFExtendedStub.hpp │ ├── AFManagedStub.cpp │ ├── AFManagedStub.hpp │ ├── AFPolymorphStub.cpp │ ├── AFPolymorphStub.hpp │ ├── AFSelectiveStub.cpp │ ├── AFSelectiveStub.hpp │ ├── CMAttributesStub.cpp │ ├── CMAttributesStub.hpp │ ├── CMBroadcastsStub.cpp │ ├── CMBroadcastsStub.hpp │ ├── CMMethodCallsStub.cpp │ ├── CMMethodCallsStub.hpp │ ├── DTAdvancedStub.cpp │ ├── DTAdvancedStub.hpp │ ├── DTCombinedStub.cpp │ ├── DTCombinedStub.hpp │ ├── DTDeploymentStub.cpp │ ├── DTDeploymentStub.hpp │ ├── DTDerivedStub.cpp │ ├── DTDerivedStub.hpp │ ├── DTPrimitiveStub.cpp │ ├── DTPrimitiveStub.hpp │ ├── DeviceStubImpl.cpp │ ├── DeviceStubImpl.hpp │ ├── HLevelBottomStubImpl.cpp │ ├── HLevelBottomStubImpl.hpp │ ├── HLevelMiddleStubImpl.cpp │ ├── HLevelMiddleStubImpl.hpp │ ├── HLevelTopStubImpl.cpp │ ├── HLevelTopStubImpl.hpp │ ├── PFComplexStub.cpp │ ├── PFComplexStub.hpp │ ├── PFPrimitiveStub.cpp │ ├── PFPrimitiveStub.hpp │ ├── SpecialDeviceStubImpl.cpp │ ├── SpecialDeviceStubImpl.hpp │ ├── StabilitySPStub.cpp │ ├── StabilitySPStub.hpp │ ├── THMainLoopIntegrationStub.cpp │ ├── THMainLoopIntegrationStub.hpp │ ├── VSomeIPSecStub.cpp │ └── VSomeIPSecStub.hpp │ └── utils │ ├── StopWatch.cpp │ ├── StopWatch.hpp │ ├── VerificationMainLoop.hpp │ └── VerificationMainLoopWithQueue.hpp ├── org.genivi.commonapi.core ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── deployment │ ├── CommonAPI-4_deployment_spec.fdepl │ └── CommonAPI_deployment_spec.fdepl ├── pom.xml ├── src-gen │ └── org │ │ └── genivi │ │ └── commonapi │ │ └── core │ │ └── Deployment.java └── src │ └── org │ └── genivi │ └── commonapi │ └── core │ ├── deployment │ └── PropertyAccessor.java │ ├── generator │ ├── FDeployManager.java │ ├── FInterfaceGenerator.xtend │ ├── FInterfaceProxyGenerator.xtend │ ├── FInterfaceStubGenerator.xtend │ ├── FTypeCollectionGenerator.xtend │ ├── FTypeCommonAreaGenerator.xtend │ ├── FTypeCycleDetector.xtend │ ├── FTypeGenerator.xtend │ ├── FrancaGenerator.xtend │ ├── FrancaGeneratorExtensions.xtend │ ├── GeneratorFileSystemAccess.java │ ├── ModelTyp.java │ └── StandaloneModelPersistenceHandler.java │ ├── preferences │ ├── FPreferences.java │ └── PreferenceConstants.java │ └── verification │ ├── CommandlineValidator.java │ ├── CppKeywords.java │ ├── DeploymentValidator.xtend │ ├── ValidateElements.java │ └── ValidatorCore.java └── org.genivi.commonapi.releng └── pom.xml /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Bayerische Motoren Werke Aktiengesellschaft (BMW AG) -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CHANGES -------------------------------------------------------------------------------- /CommonAPI-Examples/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | */build 3 | mylog.log 4 | -------------------------------------------------------------------------------- /CommonAPI-Examples/AUTHORS: -------------------------------------------------------------------------------- 1 | Bayerische Motoren Werke Aktiengesellschaft (BMW AG) -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/CMakeLists.txt -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/README -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/commonapi4dbus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/commonapi4dbus.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/commonapi4someip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/commonapi4someip.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/fidl/E01HelloWorld-SomeIP.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/fidl/E01HelloWorld-SomeIP.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/fidl/E01HelloWorld.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/fidl/E01HelloWorld.fidl -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/src/E01HelloWorldClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/src/E01HelloWorldClient.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/src/E01HelloWorldService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/src/E01HelloWorldService.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/src/E01HelloWorldStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/src/E01HelloWorldStubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/src/E01HelloWorldStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/src/E01HelloWorldStubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/vsomeip-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/vsomeip-client.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/vsomeip-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/vsomeip-local.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E01HelloWorld/vsomeip-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E01HelloWorld/vsomeip-service.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/CMakeLists.txt -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/README -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/commonapi4someip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/commonapi4someip.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/fidl/E02Attributes-DBus.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/fidl/E02Attributes-DBus.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/fidl/E02Attributes-SomeIP.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/fidl/E02Attributes-SomeIP.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/fidl/E02Attributes.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/fidl/E02Attributes.fidl -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/src/E02AttributesClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/src/E02AttributesClient.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/src/E02AttributesService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/src/E02AttributesService.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/src/E02AttributesStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/src/E02AttributesStubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/src/E02AttributesStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/src/E02AttributesStubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/vsomeip-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/vsomeip-client.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/vsomeip-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/vsomeip-local.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E02Attributes/vsomeip-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E02Attributes/vsomeip-service.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/CMakeLists.txt -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/README -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/commonapi4someip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/commonapi4someip.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/fidl/E03Methods-DBus.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/fidl/E03Methods-DBus.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/fidl/E03Methods-SomeIP.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/fidl/E03Methods-SomeIP.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/fidl/E03Methods.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/fidl/E03Methods.fidl -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/src/E03MethodsClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/src/E03MethodsClient.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/src/E03MethodsService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/src/E03MethodsService.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/src/E03MethodsStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/src/E03MethodsStubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/src/E03MethodsStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/src/E03MethodsStubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/vsomeip-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/vsomeip-client.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/vsomeip-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/vsomeip-local.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E03Methods/vsomeip-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E03Methods/vsomeip-service.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/CMakeLists.txt -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/README -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/commonapi4dbus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/commonapi4dbus.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/commonapi4someip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/commonapi4someip.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/fidl/E04PhoneBook-DBus.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/fidl/E04PhoneBook-DBus.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/fidl/E04PhoneBook-SomeIP.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/fidl/E04PhoneBook-SomeIP.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/fidl/E04PhoneBook.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/fidl/E04PhoneBook.fidl -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/src/E04PhoneBookClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/src/E04PhoneBookClient.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/src/E04PhoneBookService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/src/E04PhoneBookService.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/src/E04PhoneBookStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/src/E04PhoneBookStubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/src/E04PhoneBookStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/src/E04PhoneBookStubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/vsomeip-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/vsomeip-client.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/vsomeip-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/vsomeip-local.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E04PhoneBook/vsomeip-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E04PhoneBook/vsomeip-service.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/CMakeLists.txt -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/README -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/commonapi4dbus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/commonapi4dbus.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/commonapi4someip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/commonapi4someip.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/fidl/E05Manager-SomeIP.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/fidl/E05Manager-SomeIP.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/fidl/E05Manager.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/fidl/E05Manager.fidl -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/src/E05DeviceStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/src/E05DeviceStubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/src/E05DeviceStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/src/E05DeviceStubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/src/E05ManagerClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/src/E05ManagerClient.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/src/E05ManagerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/src/E05ManagerService.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/src/E05ManagerStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/src/E05ManagerStubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/src/E05ManagerStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/src/E05ManagerStubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/src/E05SpecialDeviceStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/src/E05SpecialDeviceStubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/src/E05SpecialDeviceStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/src/E05SpecialDeviceStubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/vsomeip-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/vsomeip-client.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/vsomeip-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/vsomeip-local.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E05Manager/vsomeip-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E05Manager/vsomeip-service.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/CMakeLists.txt -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/README -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/commonapi4dbus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/commonapi4dbus.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/commonapi4someip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/commonapi4someip.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/fidl/E06Unions-SomeIP.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/fidl/E06Unions-SomeIP.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/fidl/E06Unions.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/fidl/E06Unions.fidl -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/src/E06UnionsClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/src/E06UnionsClient.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/src/E06UnionsService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/src/E06UnionsService.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/src/E06UnionsStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/src/E06UnionsStubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/src/E06UnionsStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/src/E06UnionsStubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/src/E06UnionsTypeUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/src/E06UnionsTypeUtils.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/vsomeip-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/vsomeip-client.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/vsomeip-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/vsomeip-local.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E06Unions/vsomeip-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E06Unions/vsomeip-service.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/CMakeLists.txt -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/README -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/commonapi4dbus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/commonapi4dbus.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/commonapi4someip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/commonapi4someip.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/fidl/E07Mainloop-SomeIP.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/fidl/E07Mainloop-SomeIP.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/fidl/E07Mainloop.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/fidl/E07Mainloop.fidl -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/src/E07MainloopClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/src/E07MainloopClient.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/src/E07MainloopService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/src/E07MainloopService.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/src/E07MainloopStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/src/E07MainloopStubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/src/E07MainloopStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/src/E07MainloopStubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/vsomeip-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/vsomeip-client.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/vsomeip-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/vsomeip-local.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E07Mainloop/vsomeip-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E07Mainloop/vsomeip-service.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/CMakeLists.txt -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/README.md -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/commonapi4someip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/commonapi4someip.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/fidl/E08CrcProtectionP04-SomeIP.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/fidl/E08CrcProtectionP04-SomeIP.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/fidl/E08CrcProtectionP04.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/fidl/E08CrcProtectionP04.fidl -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/src/E08CrcProtectionP04Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/src/E08CrcProtectionP04Client.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/src/E08CrcProtectionP04Service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/src/E08CrcProtectionP04Service.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/src/E08CrcProtectionP04StubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/src/E08CrcProtectionP04StubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/src/E08CrcProtectionP04StubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/src/E08CrcProtectionP04StubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/vsomeip-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/vsomeip-client.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E08CrcProtectionP04/vsomeip-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E08CrcProtectionP04/vsomeip-service.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/CMakeLists.txt -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/README.md -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/commonapi4someip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/commonapi4someip.ini -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/fidl/E09CrcProtectionP01-SomeIP.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/fidl/E09CrcProtectionP01-SomeIP.fdepl -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/fidl/E09CrcProtectionP01.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/fidl/E09CrcProtectionP01.fidl -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/src/E09CrcProtectionP01Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/src/E09CrcProtectionP01Client.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/src/E09CrcProtectionP01Service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/src/E09CrcProtectionP01Service.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/src/E09CrcProtectionP01StubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/src/E09CrcProtectionP01StubImpl.cpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/src/E09CrcProtectionP01StubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/src/E09CrcProtectionP01StubImpl.hpp -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/vsomeip-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/vsomeip-client.json -------------------------------------------------------------------------------- /CommonAPI-Examples/E09CrcProtectionP01/vsomeip-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/E09CrcProtectionP01/vsomeip-service.json -------------------------------------------------------------------------------- /CommonAPI-Examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/LICENSE -------------------------------------------------------------------------------- /CommonAPI-Examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/CommonAPI-Examples/README -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/README.md -------------------------------------------------------------------------------- /docx/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /docx/CommonAPICppSpecification: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/CommonAPICppSpecification -------------------------------------------------------------------------------- /docx/CommonAPICppUserGuide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/CommonAPICppUserGuide -------------------------------------------------------------------------------- /docx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/Makefile -------------------------------------------------------------------------------- /docx/images/AsynchronousStubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/AsynchronousStubs.png -------------------------------------------------------------------------------- /docx/images/CodeGenerationFrancaIDL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/CodeGenerationFrancaIDL.png -------------------------------------------------------------------------------- /docx/images/CommonAPI-Dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/CommonAPI-Dependencies.png -------------------------------------------------------------------------------- /docx/images/CommonAPIOverview01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/CommonAPIOverview01.png -------------------------------------------------------------------------------- /docx/images/CommonAPIOverview02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/CommonAPIOverview02.png -------------------------------------------------------------------------------- /docx/images/CommonAPIStructuringLibraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/CommonAPIStructuringLibraries.png -------------------------------------------------------------------------------- /docx/images/CommonAPIWorkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/CommonAPIWorkflow.png -------------------------------------------------------------------------------- /docx/images/Deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/Deployment.png -------------------------------------------------------------------------------- /docx/images/Diag_Attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/Diag_Attributes.png -------------------------------------------------------------------------------- /docx/images/Diag_GeneratedProxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/Diag_GeneratedProxy.png -------------------------------------------------------------------------------- /docx/images/Diag_GeneratedStub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/Diag_GeneratedStub.png -------------------------------------------------------------------------------- /docx/images/E04PhoneBook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/E04PhoneBook.png -------------------------------------------------------------------------------- /docx/images/E05Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/E05Manager.png -------------------------------------------------------------------------------- /docx/images/EclipseBuildToolsSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/EclipseBuildToolsSettings.png -------------------------------------------------------------------------------- /docx/images/EclipseCommonAPISettings01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/EclipseCommonAPISettings01.png -------------------------------------------------------------------------------- /docx/images/icons/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/icons/important.png -------------------------------------------------------------------------------- /docx/images/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/icons/logo.png -------------------------------------------------------------------------------- /docx/images/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/images/icons/note.png -------------------------------------------------------------------------------- /docx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/index.html -------------------------------------------------------------------------------- /docx/mainpagetests/01_mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/docx/mainpagetests/01_mainpage.dox -------------------------------------------------------------------------------- /org.genivi.commonapi.console.feature/build.properties: -------------------------------------------------------------------------------- 1 | javacDefaultEncoding.. = UTF-8 2 | bin.includes = feature.xml 3 | -------------------------------------------------------------------------------- /org.genivi.commonapi.console.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console.feature/feature.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.console.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console.feature/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.console.franca.feature/build.properties: -------------------------------------------------------------------------------- 1 | javacDefaultEncoding.. = UTF-8 2 | bin.includes = feature.xml 3 | -------------------------------------------------------------------------------- /org.genivi.commonapi.console.franca.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console.franca.feature/feature.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.console.franca.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console.franca.feature/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.console/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /org.genivi.commonapi.console/about.mappings: -------------------------------------------------------------------------------- 1 | 0=3.2.15 2 | 1=20240402 3 | 2=$sun.arch.data.model$ 4 | -------------------------------------------------------------------------------- /org.genivi.commonapi.console/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/build.properties -------------------------------------------------------------------------------- /org.genivi.commonapi.console/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/plugin.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.console/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.console/schema/commands.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/schema/commands.exsd -------------------------------------------------------------------------------- /org.genivi.commonapi.console/schema/optionGroups.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/schema/optionGroups.exsd -------------------------------------------------------------------------------- /org.genivi.commonapi.console/schema/options.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/schema/options.exsd -------------------------------------------------------------------------------- /org.genivi.commonapi.console/src/org/genivi/commonapi/console/AbstractCommandLineHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/src/org/genivi/commonapi/console/AbstractCommandLineHandler.java -------------------------------------------------------------------------------- /org.genivi.commonapi.console/src/org/genivi/commonapi/console/CommandExecuter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/src/org/genivi/commonapi/console/CommandExecuter.java -------------------------------------------------------------------------------- /org.genivi.commonapi.console/src/org/genivi/commonapi/console/CommandlineTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/src/org/genivi/commonapi/console/CommandlineTool.java -------------------------------------------------------------------------------- /org.genivi.commonapi.console/src/org/genivi/commonapi/console/ConsoleLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/src/org/genivi/commonapi/console/ConsoleLogger.java -------------------------------------------------------------------------------- /org.genivi.commonapi.console/src/org/genivi/commonapi/console/ICommandLineHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/src/org/genivi/commonapi/console/ICommandLineHandler.java -------------------------------------------------------------------------------- /org.genivi.commonapi.console/src/org/genivi/commonapi/console/internal/Activator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/src/org/genivi/commonapi/console/internal/Activator.java -------------------------------------------------------------------------------- /org.genivi.commonapi.console/src/org/genivi/commonapi/console/internal/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/src/org/genivi/commonapi/console/internal/Application.java -------------------------------------------------------------------------------- /org.genivi.commonapi.console/src/org/genivi/commonapi/console/internal/HelpCommandHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/src/org/genivi/commonapi/console/internal/HelpCommandHandler.java -------------------------------------------------------------------------------- /org.genivi.commonapi.console/src/org/genivi/commonapi/console/internal/VersionCommandHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.console/src/org/genivi/commonapi/console/internal/VersionCommandHandler.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli.feature/build.properties: -------------------------------------------------------------------------------- 1 | javacDefaultEncoding.. = UTF-8 2 | bin.includes = feature.xml 3 | -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli.feature/feature.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli.feature/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli.product/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli.product/category.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli.product/commonapi_console.product: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli.product/commonapi_console.product -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli.product/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli.product/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli.product/zip.excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli.product/zip.excludes -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli/build.properties -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli/plugin.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli/src/org/genivi/commonapi/core/cli/Activator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli/src/org/genivi/commonapi/core/cli/Activator.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli/src/org/genivi/commonapi/core/cli/CommandLineHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli/src/org/genivi/commonapi/core/cli/CommandLineHandler.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.cli/src/org/genivi/commonapi/core/cli/CommandlineToolMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.cli/src/org/genivi/commonapi/core/cli/CommandlineToolMain.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.feature/build.properties -------------------------------------------------------------------------------- /org.genivi.commonapi.core.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.feature/feature.properties -------------------------------------------------------------------------------- /org.genivi.commonapi.core.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.feature/feature.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.feature/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.feature/license.html -------------------------------------------------------------------------------- /org.genivi.commonapi.core.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.feature/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.releng/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.releng/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.target/org.genivi.commonapi.core.target.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.target/org.genivi.commonapi.core.target.target -------------------------------------------------------------------------------- /org.genivi.commonapi.core.target/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.target/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/build.properties -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/plugin.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/CommandExecutableExtensionFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/CommandExecutableExtensionFactory.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/CommonApiUiPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/CommonApiUiPlugin.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/handler/CoreGenerationCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/handler/CoreGenerationCommand.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/handler/GenerationCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/handler/GenerationCommand.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/CommonAPIPreferencePage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/CommonAPIPreferencePage.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/FieldEditorOverlayPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/FieldEditorOverlayPage.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/Messages.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/Messages.properties -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/MultiLineStringFieldEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/MultiLineStringFieldEditor.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/PreferenceInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/PreferenceInitializer.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/PropertyStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.ui/src/org/genivi/commonapi/core/ui/preferences/PropertyStore.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.updatesite/Build CommonAPI-Core Tools.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.updatesite/Build CommonAPI-Core Tools.launch -------------------------------------------------------------------------------- /org.genivi.commonapi.core.updatesite/Install CommonAPI-Core Tools.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.updatesite/Install CommonAPI-Core Tools.launch -------------------------------------------------------------------------------- /org.genivi.commonapi.core.updatesite/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.updatesite/category.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.updatesite/composite_update_site/compositeArtifacts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.updatesite/composite_update_site/compositeArtifacts.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.updatesite/composite_update_site/compositeContent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.updatesite/composite_update_site/compositeContent.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.updatesite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.updatesite/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator.feature/build.properties -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator.feature/feature.properties -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator.feature/feature.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator.feature/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator.feature/license.html -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator.feature/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator/build.properties -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator/plugin.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator/src/org/genivi/commonapi/core/validator/DeploymentValidatorCore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator/src/org/genivi/commonapi/core/validator/DeploymentValidatorCore.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator/src/org/genivi/commonapi/core/validator/ValidatorCoreUi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator/src/org/genivi/commonapi/core/validator/ValidatorCoreUi.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.validator/src/org/genivi/commonapi/core/validator/preferencepage/ValidatorCorePreferencesPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.validator/src/org/genivi/commonapi/core/validator/preferencepage/ValidatorCorePreferencesPage.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.o 3 | /.deps 4 | /build 5 | /Testing 6 | -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/CMakeLists.txt -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/README -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/doxygen-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/doxygen-test.cfg -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ClientIdService.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ClientIdService.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_advanced_bselective.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_advanced_bselective.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_advanced_extended.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_advanced_extended.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_advanced_managed.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_advanced_managed.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_advanced_polymorph.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_advanced_polymorph.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_communication.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_communication.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_datatypes_advanced.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_datatypes_advanced.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_datatypes_combined.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_datatypes_combined.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_datatypes_constants.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_datatypes_constants.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_datatypes_deployment.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_datatypes_deployment.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_datatypes_derived.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_datatypes_derived.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_datatypes_primitive.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_datatypes_primitive.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_performance_complex.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_performance_complex.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_performance_primitive.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_performance_primitive.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_runtime.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_runtime.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_stability_sp.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_stability_sp.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/fidl/ti_threading.fidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/fidl/ti_threading.fidl -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/AFExtended.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/AFExtended.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/AFManaged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/AFManaged.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/AFPolymorph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/AFPolymorph.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/AFSelective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/AFSelective.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/CMAttributeSubscription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/CMAttributeSubscription.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/CMAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/CMAttributes.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/CMBlockingCalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/CMBlockingCalls.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/CMBroadcasts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/CMBroadcasts.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/CMMethodCalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/CMMethodCalls.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/DTAdvanced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/DTAdvanced.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/DTCombined.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/DTCombined.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/DTConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/DTConstants.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/DTDeployment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/DTDeployment.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/DTDerived.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/DTDerived.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/DTPrimitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/DTPrimitive.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/PFComplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/PFComplex.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/PFPrimitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/PFPrimitive.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/RTBuildProxiesAndStubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/RTBuildProxiesAndStubs.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/RTLoadingRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/RTLoadingRuntime.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/StabilitySP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/StabilitySP.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/THMainLoopIndependence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/THMainLoopIndependence.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/THMainLoopIntegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/THMainLoopIntegration.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/THMainLoopTwoThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/THMainLoopTwoThreads.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/VSomeIPSec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/VSomeIPSec.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/conf/commonapi4dbus.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/conf/commonapi4dbus.ini.in -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/conf/commonapi4someip.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/conf/commonapi4someip.ini.in -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/AFExtendedStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/AFExtendedStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/AFExtendedStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/AFExtendedStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/AFManagedStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/AFManagedStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/AFManagedStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/AFManagedStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/AFPolymorphStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/AFPolymorphStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/AFPolymorphStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/AFPolymorphStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/AFSelectiveStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/AFSelectiveStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/AFSelectiveStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/AFSelectiveStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/CMAttributesStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/CMAttributesStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/CMAttributesStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/CMAttributesStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/CMBroadcastsStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/CMBroadcastsStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/CMBroadcastsStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/CMBroadcastsStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/CMMethodCallsStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/CMMethodCallsStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/CMMethodCallsStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/CMMethodCallsStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DTAdvancedStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DTAdvancedStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DTAdvancedStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DTAdvancedStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DTCombinedStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DTCombinedStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DTCombinedStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DTCombinedStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DTDeploymentStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DTDeploymentStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DTDeploymentStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DTDeploymentStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DTDerivedStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DTDerivedStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DTDerivedStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DTDerivedStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DTPrimitiveStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DTPrimitiveStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DTPrimitiveStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DTPrimitiveStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DeviceStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DeviceStubImpl.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/DeviceStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/DeviceStubImpl.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/HLevelBottomStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/HLevelBottomStubImpl.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/HLevelBottomStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/HLevelBottomStubImpl.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/HLevelMiddleStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/HLevelMiddleStubImpl.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/HLevelMiddleStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/HLevelMiddleStubImpl.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/HLevelTopStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/HLevelTopStubImpl.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/HLevelTopStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/HLevelTopStubImpl.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/PFComplexStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/PFComplexStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/PFComplexStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/PFComplexStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/PFPrimitiveStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/SpecialDeviceStubImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/SpecialDeviceStubImpl.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/SpecialDeviceStubImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/SpecialDeviceStubImpl.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/StabilitySPStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/THMainLoopIntegrationStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/THMainLoopIntegrationStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/THMainLoopIntegrationStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/THMainLoopIntegrationStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/VSomeIPSecStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/VSomeIPSecStub.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/stub/VSomeIPSecStub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/stub/VSomeIPSecStub.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/utils/StopWatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/utils/StopWatch.cpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/utils/StopWatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/utils/StopWatch.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/utils/VerificationMainLoop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/utils/VerificationMainLoop.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core.verification/src/utils/VerificationMainLoopWithQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core.verification/src/utils/VerificationMainLoopWithQueue.hpp -------------------------------------------------------------------------------- /org.genivi.commonapi.core/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /org.genivi.commonapi.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/build.properties -------------------------------------------------------------------------------- /org.genivi.commonapi.core/deployment/CommonAPI-4_deployment_spec.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/deployment/CommonAPI-4_deployment_spec.fdepl -------------------------------------------------------------------------------- /org.genivi.commonapi.core/deployment/CommonAPI_deployment_spec.fdepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/deployment/CommonAPI_deployment_spec.fdepl -------------------------------------------------------------------------------- /org.genivi.commonapi.core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/pom.xml -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src-gen/org/genivi/commonapi/core/Deployment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src-gen/org/genivi/commonapi/core/Deployment.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/deployment/PropertyAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/deployment/PropertyAccessor.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FDeployManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FDeployManager.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FInterfaceGenerator.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FInterfaceGenerator.xtend -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FInterfaceProxyGenerator.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FInterfaceProxyGenerator.xtend -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FInterfaceStubGenerator.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FInterfaceStubGenerator.xtend -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FTypeCollectionGenerator.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FTypeCollectionGenerator.xtend -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FTypeCommonAreaGenerator.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FTypeCommonAreaGenerator.xtend -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FTypeCycleDetector.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FTypeCycleDetector.xtend -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FTypeGenerator.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FTypeGenerator.xtend -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FrancaGenerator.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FrancaGenerator.xtend -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FrancaGeneratorExtensions.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/FrancaGeneratorExtensions.xtend -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/GeneratorFileSystemAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/GeneratorFileSystemAccess.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/ModelTyp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/ModelTyp.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/StandaloneModelPersistenceHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/generator/StandaloneModelPersistenceHandler.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/preferences/FPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/preferences/FPreferences.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/preferences/PreferenceConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/preferences/PreferenceConstants.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/verification/CommandlineValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/verification/CommandlineValidator.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/verification/CppKeywords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/verification/CppKeywords.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/verification/DeploymentValidator.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/verification/DeploymentValidator.xtend -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/verification/ValidateElements.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/verification/ValidateElements.java -------------------------------------------------------------------------------- /org.genivi.commonapi.core/src/org/genivi/commonapi/core/verification/ValidatorCore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.core/src/org/genivi/commonapi/core/verification/ValidatorCore.java -------------------------------------------------------------------------------- /org.genivi.commonapi.releng/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/capicxx-core-tools/HEAD/org.genivi.commonapi.releng/pom.xml --------------------------------------------------------------------------------