├── .gitignore ├── DEV.adoc ├── README.adoc ├── assemblies ├── debug │ └── pom.xml ├── fuse-features │ ├── pom.xml │ └── rhba-features │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── features.xml ├── fuse-karaf-framework │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appended-resources │ │ ├── append-header.part │ │ └── etc │ │ │ └── config.properties │ │ ├── feature │ │ └── feature.xml │ │ ├── filtered-resources │ │ └── resources │ │ │ └── etc │ │ │ ├── distribution.info │ │ │ ├── maven-settings.xml │ │ │ ├── org.apache.karaf.features.xml │ │ │ ├── org.ops4j.pax.logging.cfg │ │ │ ├── org.ops4j.pax.transx.tm.narayana.cfg │ │ │ ├── org.ops4j.pax.url.mvn.cfg │ │ │ ├── prometheus-config.yml-example │ │ │ ├── undertow.xml │ │ │ ├── users.properties │ │ │ └── version.properties │ │ └── resources │ │ └── resources │ │ ├── bin │ │ ├── fuse │ │ ├── fuse-inc │ │ └── fuse.bat │ │ ├── deploy │ │ └── README │ │ ├── etc │ │ ├── custom.properties │ │ ├── jolokia-access.xml │ │ ├── org.apache.felix.fileinstall-deploy.cfg │ │ └── org.apache.karaf.kar.cfg │ │ └── lib │ │ ├── boot │ │ └── README │ │ └── endorsed │ │ └── README ├── fuse-karaf-minimal │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── assembly │ │ └── etc │ │ └── org.ops4j.pax.web.cfg ├── fuse-karaf │ ├── pom.xml │ └── src │ │ ├── license │ │ ├── licenses.css │ │ ├── licenses.html │ │ ├── licenses.xml │ │ ├── licenses.xsl │ │ └── licenses │ │ │ ├── alv2 - license-2.0.html │ │ │ ├── apache license, version 2.0 - license-2.0.txt │ │ │ ├── apache license, version 2.0 - license-2.0.txt.html │ │ │ ├── apache software license, version 2.0 - apache-2.0.txt │ │ │ ├── bouncy castle licence - licence.html │ │ │ ├── bsd - license.html │ │ │ ├── cddl + gplv2 with classpath exception - cddl+gpl.html │ │ │ ├── common development and distribution license - cddl.txt │ │ │ ├── common development and distribution license version 1.1 - cddl-v1.1.txt │ │ │ ├── eclipse public license - epl-v10.html │ │ │ ├── eclipse public license - version 1.0 - epl-v10.php.html │ │ │ ├── eclipse public license v1.0 - epl-1.0.txt │ │ │ ├── gnu general public license, version 2 with the classpath exception - gpl-2.0-ce.txt │ │ │ ├── gnu lesser general public license, version 2.1 - lgpl-2.1.txt │ │ │ ├── lgpl 2.1 - lgpl-2.1.html │ │ │ ├── lgpl, version 2.1 - licenses.html │ │ │ ├── mozilla public license, version 1.1 - mpl-1.1.txt │ │ │ ├── public domain - cc0-1.0.txt │ │ │ ├── the apache software license, version 2.0 - license-2.0.txt │ │ │ ├── the asm bsd license - license.html │ │ │ ├── the bsd license - bsd.txt │ │ │ └── w3c software notice and license - copyright-software-19980720.txt.html │ │ └── main │ │ ├── descriptors │ │ └── baseline.xml │ │ └── resources │ │ ├── assembly │ │ └── etc │ │ │ ├── jolokia-access.xml │ │ │ └── org.ops4j.pax.web.cfg │ │ └── notice-supplements.xml ├── fuse-patch-management │ ├── pom.xml │ └── src │ │ └── main │ │ └── descriptors │ │ └── patch-management.xml └── pom.xml ├── etc ├── fuse-checkstyle-suppressions.xml └── fuse-checkstyle.xml ├── itests ├── fuse-itests-common │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── jboss │ │ └── fuse │ │ └── itests │ │ └── karaf │ │ └── FuseKarafTestSupport.java ├── fuse-itests-karaf │ ├── pom.xml │ └── src │ │ └── test │ │ └── resources │ │ ├── controlled-exam.properties │ │ ├── etc │ │ └── org.ops4j.pax.logging.cfg │ │ └── log4j2.properties ├── fuse-itests-paxexam │ ├── pom.xml │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jboss │ │ │ └── fuse │ │ │ └── itests │ │ │ └── karaf │ │ │ ├── CredentialStoreIntegrationTest.java │ │ │ ├── CredentialStoreJMXIntegrationTest.java │ │ │ ├── CredentialStoreStartupFailureIntegrationTest.java │ │ │ ├── FullDistroIntegrationTest.java │ │ │ └── MinimalDistroIntegrationTest.java │ │ ├── resources-binary │ │ └── credential.store │ │ └── resources │ │ ├── etc │ │ ├── org.ops4j.pax.logging.cfg │ │ └── users.properties │ │ └── log4j2.properties └── pom.xml ├── license-header.txt ├── license.txt ├── modules ├── fabric8-karaf │ ├── fabric8-karaf-blueprint │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── fabric8 │ │ │ └── karaf │ │ │ └── blueprint │ │ │ └── Fabric8PropertyEvaluator.java │ ├── fabric8-karaf-checks │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── fabric8 │ │ │ └── karaf │ │ │ └── checks │ │ │ ├── Check.java │ │ │ ├── HealthChecker.java │ │ │ ├── ReadinessChecker.java │ │ │ └── internal │ │ │ ├── AbstractBundleChecker.java │ │ │ ├── AbstractChecker.java │ │ │ ├── BlueprintState.java │ │ │ ├── BootFeaturesState.java │ │ │ ├── BundleState.java │ │ │ ├── CamelState.java │ │ │ ├── ChecksService.java │ │ │ ├── FrameworkState.java │ │ │ ├── HealthCheckServlet.java │ │ │ ├── ReadinessCheckServlet.java │ │ │ ├── ScrState.java │ │ │ └── WarState.java │ ├── fabric8-karaf-cm │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── fabric8 │ │ │ │ └── karaf │ │ │ │ └── cm │ │ │ │ ├── KubernetesConfigAdminBridge.java │ │ │ │ ├── KubernetesConstants.java │ │ │ │ └── PlaceholderResolverConfigurationPlugin.java │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── fabric8 │ │ │ └── karaf │ │ │ └── cm │ │ │ └── KubernetesConfigAdminBridgeTest.java │ ├── fabric8-karaf-core │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── fabric8 │ │ │ │ └── karaf │ │ │ │ └── core │ │ │ │ ├── Support.java │ │ │ │ └── properties │ │ │ │ ├── PlaceholderResolver.java │ │ │ │ ├── PlaceholderResolverImpl.java │ │ │ │ └── function │ │ │ │ ├── EnvPropertiesFunction.java │ │ │ │ ├── KubernetesPropertiesFunction.java │ │ │ │ ├── KubernetesSupport.java │ │ │ │ ├── PropertiesFunction.java │ │ │ │ ├── ServiceHostPropertiesFunction.java │ │ │ │ ├── ServicePortPropertiesFunction.java │ │ │ │ ├── ServicePropertiesFunction.java │ │ │ │ └── SysPropertiesFunction.java │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── fabric8 │ │ │ └── karaf │ │ │ └── core │ │ │ └── properties │ │ │ └── PlaceholderResolverTest.java │ ├── fabric8-karaf-features │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── feature.xml │ ├── fabric8-karaf-itests │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── fabric8 │ │ │ └── karaf │ │ │ └── itests │ │ │ ├── FeatureInstallationTest.java │ │ │ ├── ServiceTest.java │ │ │ └── TestBase.java │ └── pom.xml ├── fuse-branding │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── apache │ │ └── karaf │ │ └── branding │ │ └── branding.properties ├── fuse-credential-store │ ├── README.md │ ├── fuse-credential-store-commands │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── fuse │ │ │ │ ├── credential │ │ │ │ └── store │ │ │ │ │ └── command │ │ │ │ │ ├── AbstractCredentialStoreCommand.java │ │ │ │ │ ├── CreateCredentialStore.java │ │ │ │ │ ├── ListCredentialStore.java │ │ │ │ │ ├── RemoveFromCredentialStore.java │ │ │ │ │ ├── StoreInCredentialStore.java │ │ │ │ │ └── completers │ │ │ │ │ └── CredentialStoreAlgorithmCompletionSupport.java │ │ │ │ └── jasypt │ │ │ │ └── commands │ │ │ │ ├── Decrypt.java │ │ │ │ ├── Digest.java │ │ │ │ ├── Encrypt.java │ │ │ │ ├── Helpers.java │ │ │ │ ├── ListAlgorithms.java │ │ │ │ ├── completers │ │ │ │ ├── JasyptDigestAlgorithmsCompletionSupport.java │ │ │ │ └── JasyptPbeAlgorithmsCompletionSupport.java │ │ │ │ └── support │ │ │ │ ├── FipsRandomIvGenerator.java │ │ │ │ └── FipsRandomSaltGenerator.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── fuse │ │ │ │ ├── credential │ │ │ │ └── store │ │ │ │ │ └── command │ │ │ │ │ └── CreateCredentialStoreTest.java │ │ │ │ └── jasypt │ │ │ │ └── commands │ │ │ │ ├── JasypDecryptionTest.java │ │ │ │ └── JasypEncriptionCommandTest.java │ │ │ └── resources │ │ │ └── log4j2.properties │ ├── fuse-credential-store-core │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ ├── jboss │ │ │ │ └── fuse │ │ │ │ │ └── credential │ │ │ │ │ └── store │ │ │ │ │ ├── CredentialStoreConfiguration.java │ │ │ │ │ ├── CredentialStoreHelper.java │ │ │ │ │ ├── CredentialStoreService.java │ │ │ │ │ ├── cm │ │ │ │ │ ├── ConfigurationAdminWrapper.java │ │ │ │ │ ├── EncryptingPersistenceManager.java │ │ │ │ │ ├── FileInstallEventListenerHook.java │ │ │ │ │ └── FileInstallFindHook.java │ │ │ │ │ └── impl │ │ │ │ │ ├── Activator.java │ │ │ │ │ └── CredentialStoreServiceImpl.java │ │ │ │ └── wildfly │ │ │ │ └── security │ │ │ │ └── password │ │ │ │ └── PasswordFactory.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── fuse │ │ │ │ └── credential │ │ │ │ └── store │ │ │ │ ├── impl │ │ │ │ └── ActivatorTest.java │ │ │ │ └── util │ │ │ │ ├── CredentialStoreHelperTest.java │ │ │ │ ├── ElytronTest.java │ │ │ │ └── SecurityTest.java │ │ │ └── resources │ │ │ └── log4j2.properties │ └── pom.xml ├── fuse-el2-compatibility │ └── pom.xml ├── fuse-patch │ ├── patch-commands │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── jboss │ │ │ └── fuse │ │ │ └── patch │ │ │ └── commands │ │ │ ├── AddCommand.java │ │ │ ├── DeleteCommand.java │ │ │ ├── FindCommand.java │ │ │ ├── InstallCommand.java │ │ │ ├── ListCommand.java │ │ │ ├── PatchCommandSupport.java │ │ │ ├── RollbackCommand.java │ │ │ ├── ShowCommand.java │ │ │ ├── SimulateCommand.java │ │ │ ├── UpdateCommand.java │ │ │ ├── completers │ │ │ ├── InstallPatchCompleter.java │ │ │ ├── PatchCompleter.java │ │ │ └── UninstallPatchCompleter.java │ │ │ └── model │ │ │ └── FuseVersion.java │ ├── patch-core-api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── jboss │ │ │ └── fuse │ │ │ └── patch │ │ │ └── PatchService.java │ ├── patch-core │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── fuse │ │ │ │ └── patch │ │ │ │ └── impl │ │ │ │ ├── OSGiPatchHelper.java │ │ │ │ ├── PatchServiceImpl.java │ │ │ │ └── Presentation.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── fuse │ │ │ │ └── patch │ │ │ │ └── impl │ │ │ │ ├── PatchServiceImplTest.java │ │ │ │ └── PatchTestSupport.java │ │ │ └── resources │ │ │ ├── files │ │ │ ├── files2.patch │ │ │ └── files3.patch │ │ │ ├── log4j.properties │ │ │ ├── prereq │ │ │ ├── patch1.patch │ │ │ ├── patch2.patch │ │ │ ├── patch3.patch │ │ │ ├── prereq2.patch │ │ │ ├── prereq3.patch │ │ │ └── prereq3.patch.result │ │ │ ├── test-with-prereq.patch │ │ │ ├── test1.patch │ │ │ ├── test2.patch │ │ │ └── uber-startup.properties │ ├── patch-features │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── patch-features.xml │ ├── patch-itests │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── fuse │ │ │ │ └── patch │ │ │ │ └── itests │ │ │ │ ├── AbstractPatchIntegrationTest.java │ │ │ │ ├── PatchBundlesCommandIntegrationTest.java │ │ │ │ ├── PatchBundlesIntegrationTest.java │ │ │ │ └── PatchFilesIntegrationTest.java │ │ │ └── resources │ │ │ ├── etc │ │ │ ├── org.ops4j.pax.logging.cfg │ │ │ ├── users.properties │ │ │ └── version.properties │ │ │ ├── log4j2.properties │ │ │ └── patches │ │ │ ├── file-01.patch │ │ │ ├── file-02.patch │ │ │ ├── patch-01.patch │ │ │ ├── patch-02-without-range.patch │ │ │ └── patch-02.patch │ ├── patch-management │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ ├── eclipse │ │ │ │ │ └── jgit │ │ │ │ │ │ ├── errors │ │ │ │ │ │ └── StopWalkException.java │ │ │ │ │ │ └── nls │ │ │ │ │ │ └── NLS.java │ │ │ │ │ └── jboss │ │ │ │ │ └── fuse │ │ │ │ │ └── patch │ │ │ │ │ └── management │ │ │ │ │ ├── Artifact.java │ │ │ │ │ ├── BackupService.java │ │ │ │ │ ├── BundleUpdate.java │ │ │ │ │ ├── CVE.java │ │ │ │ │ ├── EnvService.java │ │ │ │ │ ├── EnvType.java │ │ │ │ │ ├── FeatureUpdate.java │ │ │ │ │ ├── ManagedPatch.java │ │ │ │ │ ├── Patch.java │ │ │ │ │ ├── PatchData.java │ │ │ │ │ ├── PatchDetailsRequest.java │ │ │ │ │ ├── PatchException.java │ │ │ │ │ ├── PatchKind.java │ │ │ │ │ ├── PatchManagement.java │ │ │ │ │ ├── PatchReport.java │ │ │ │ │ ├── PatchResult.java │ │ │ │ │ ├── Pending.java │ │ │ │ │ ├── Utils.java │ │ │ │ │ ├── conflicts │ │ │ │ │ ├── ChooseUserVersionResolver.java │ │ │ │ │ ├── ConflictResolver.java │ │ │ │ │ ├── DiffUtils.java │ │ │ │ │ ├── KarafFeaturesPropertiesFileResolver.java │ │ │ │ │ ├── PropertiesFileResolver.java │ │ │ │ │ ├── Resolver.java │ │ │ │ │ ├── ResolverEx.java │ │ │ │ │ ├── SetEnvBatResolver.java │ │ │ │ │ ├── SetEnvResolver.java │ │ │ │ │ └── UsersPropertiesResolver.java │ │ │ │ │ ├── impl │ │ │ │ │ ├── Activator.java │ │ │ │ │ ├── DefaultEnvService.java │ │ │ │ │ ├── FileBackupService.java │ │ │ │ │ ├── GitPatchManagementService.java │ │ │ │ │ ├── GitPatchManagementServiceImpl.java │ │ │ │ │ ├── GitPatchRepository.java │ │ │ │ │ ├── GitPatchRepositoryImpl.java │ │ │ │ │ └── InternalUtils.java │ │ │ │ │ ├── io │ │ │ │ │ ├── EOLFixingFileOutputStream.java │ │ │ │ │ ├── EOLFixingFileUtils.java │ │ │ │ │ └── NtfsAwareCheckoutCommand.java │ │ │ │ │ └── package-info.java │ │ │ └── resources │ │ │ │ ├── patch-file-footer.html │ │ │ │ ├── patch-file-header.html │ │ │ │ ├── patch-report-footer.html │ │ │ │ └── patch-report-header.html │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── fuse │ │ │ │ └── patch │ │ │ │ └── management │ │ │ │ ├── FeatureProcessingTest.java │ │ │ │ ├── GitPatchManagementServiceForStandaloneChildContainersIT.java │ │ │ │ ├── GitPatchManagementServiceIT.java │ │ │ │ ├── GitPatchRepositoryIT.java │ │ │ │ ├── PatchDataTest.java │ │ │ │ ├── PatchManagementIT.java │ │ │ │ ├── PatchTestSupport.java │ │ │ │ ├── UtilsTest.java │ │ │ │ ├── conflicts │ │ │ │ ├── ConflictResolutionTest.java │ │ │ │ └── GitConflictResolutionIT.java │ │ │ │ ├── impl │ │ │ │ ├── FileBackupTest.java │ │ │ │ └── ProtectedTest.java │ │ │ │ └── io │ │ │ │ └── EOLFixesTest.java │ │ │ └── resources │ │ │ ├── baselines │ │ │ ├── baseline1 │ │ │ │ ├── bin │ │ │ │ │ ├── setenv │ │ │ │ │ ├── start │ │ │ │ │ └── stop │ │ │ │ ├── etc │ │ │ │ │ ├── startup.properties │ │ │ │ │ ├── system.properties │ │ │ │ │ └── version.properties │ │ │ │ └── lib │ │ │ │ │ └── org.apache.karaf.main-4.2.0.redhat-700-SNAPSHOT.jar │ │ │ ├── baseline2 │ │ │ │ ├── bin │ │ │ │ │ ├── start │ │ │ │ │ └── stop │ │ │ │ ├── etc │ │ │ │ │ ├── startup.properties │ │ │ │ │ ├── system.properties │ │ │ │ │ └── version.properties │ │ │ │ └── lib │ │ │ │ │ └── org.apache.karaf.main-4.2.0.redhat-700-SNAPSHOT.jar │ │ │ ├── baseline3 │ │ │ │ ├── bin │ │ │ │ │ ├── start │ │ │ │ │ └── stop │ │ │ │ └── etc │ │ │ │ │ ├── startup.properties │ │ │ │ │ ├── system.properties │ │ │ │ │ └── version.properties │ │ │ ├── baseline4 │ │ │ │ └── etc │ │ │ │ │ ├── startup.properties │ │ │ │ │ └── version.properties │ │ │ ├── baseline5 │ │ │ │ ├── bin │ │ │ │ │ ├── setenv │ │ │ │ │ ├── start │ │ │ │ │ └── stop │ │ │ │ ├── etc │ │ │ │ │ ├── org.apache.karaf.features.xml │ │ │ │ │ ├── startup.properties │ │ │ │ │ ├── system.properties │ │ │ │ │ └── version.properties │ │ │ │ └── lib │ │ │ │ │ └── org.apache.karaf.main-4.2.0.redhat-700-SNAPSHOT.jar │ │ │ └── baseline6 │ │ │ │ └── etc │ │ │ │ ├── org.apache.karaf.features.xml │ │ │ │ ├── startup.properties │ │ │ │ └── version.properties │ │ │ ├── conflicts │ │ │ ├── example1 │ │ │ │ ├── fuse-karaf-7.0.0.fuse-000160.patch.result │ │ │ │ ├── org.ops4j.pax.logging.base-original-example.html │ │ │ │ ├── org.ops4j.pax.logging.base.cfg │ │ │ │ ├── org.ops4j.pax.logging.custom.cfg │ │ │ │ ├── org.ops4j.pax.logging.patched.cfg │ │ │ │ └── org.ops4j.pax.logging.test.html │ │ │ ├── example2 │ │ │ │ ├── file.base.properties │ │ │ │ ├── file.custom.properties │ │ │ │ ├── file.expected-first.properties │ │ │ │ ├── file.expected-second.properties │ │ │ │ ├── file.expected2-first.properties │ │ │ │ ├── file.expected2-second.properties │ │ │ │ └── file.patched.properties │ │ │ ├── example3 │ │ │ │ ├── maven-settings.base.xml │ │ │ │ ├── maven-settings.custom.xml │ │ │ │ ├── maven-settings.patched.xml │ │ │ │ ├── org.apache.karaf.features.after-create.cfg │ │ │ │ ├── org.apache.karaf.features.base.cfg │ │ │ │ ├── org.apache.karaf.features.expected-after-rollback.cfg │ │ │ │ ├── org.apache.karaf.features.expected.cfg │ │ │ │ └── org.apache.karaf.features.patched.cfg │ │ │ ├── setenv.base.txt │ │ │ ├── setenv.bat.base.txt │ │ │ ├── setenv.bat.custom.txt │ │ │ ├── setenv.bat.expected.txt │ │ │ ├── setenv.bat.patched.txt │ │ │ ├── setenv.custom.txt │ │ │ ├── setenv.expected.txt │ │ │ ├── setenv.patched.txt │ │ │ ├── users.base.properties │ │ │ ├── users.custom.properties │ │ │ ├── users.expected.properties │ │ │ └── users.patched.properties │ │ │ ├── content │ │ │ ├── patch1 │ │ │ │ ├── bin │ │ │ │ │ ├── setenv │ │ │ │ │ └── start │ │ │ │ ├── etc │ │ │ │ │ └── my.properties │ │ │ │ ├── my-patch-1.patch │ │ │ │ └── system │ │ │ │ │ └── org │ │ │ │ │ └── jboss │ │ │ │ │ └── fuse │ │ │ │ │ └── fuse-tranquility │ │ │ │ │ └── 1.2.3 │ │ │ │ │ └── fuse-tranquility-1.2.3.jar │ │ │ ├── patch10 │ │ │ │ ├── my-patch-10.patch │ │ │ │ └── org.apache.karaf.features.xml │ │ │ ├── patch2 │ │ │ │ ├── my-patch-2.patch │ │ │ │ └── system │ │ │ │ │ └── org │ │ │ │ │ └── jboss │ │ │ │ │ └── fuse │ │ │ │ │ └── fuse-tranquility │ │ │ │ │ └── 1.2.5 │ │ │ │ │ └── fuse-tranquility-1.2.5.jar │ │ │ ├── patch3 │ │ │ │ ├── bin │ │ │ │ │ └── stop │ │ │ │ ├── etc │ │ │ │ │ └── my.properties │ │ │ │ └── system │ │ │ │ │ └── org │ │ │ │ │ └── jboss │ │ │ │ │ └── fuse │ │ │ │ │ └── fuse-colours │ │ │ │ │ └── 1.2.3 │ │ │ │ │ └── fuse-colours-1.2.3.jar │ │ │ ├── patch4 │ │ │ │ ├── bin │ │ │ │ │ ├── fuse │ │ │ │ │ ├── setenv │ │ │ │ │ ├── start │ │ │ │ │ └── stop │ │ │ │ ├── etc │ │ │ │ │ ├── my.properties │ │ │ │ │ ├── org.apache.karaf.features.xml │ │ │ │ │ ├── startup.properties │ │ │ │ │ ├── system.properties │ │ │ │ │ └── version.properties │ │ │ │ └── system │ │ │ │ │ └── org │ │ │ │ │ └── jboss │ │ │ │ │ └── fuse │ │ │ │ │ └── fuse-tranquility │ │ │ │ │ └── 1.2.4 │ │ │ │ │ └── fuse-tranquility-1.2.4.jar │ │ │ ├── patch5 │ │ │ │ ├── my-patch-5.patch │ │ │ │ └── system │ │ │ │ │ └── org │ │ │ │ │ └── jboss │ │ │ │ │ └── fuse │ │ │ │ │ └── fuse-zen │ │ │ │ │ └── 1.2.0 │ │ │ │ │ └── fuse-zen-1.2.0.war │ │ │ ├── patch6 │ │ │ │ ├── my-patch-6.patch │ │ │ │ └── system │ │ │ │ │ └── org │ │ │ │ │ └── jboss │ │ │ │ │ └── fuse │ │ │ │ │ └── fuse-zen │ │ │ │ │ └── 1.3.3 │ │ │ │ │ └── fuse-zen-1.3.3.war │ │ │ ├── patch7 │ │ │ │ ├── bin │ │ │ │ │ ├── fuse │ │ │ │ │ ├── start │ │ │ │ │ └── stop │ │ │ │ ├── etc │ │ │ │ │ ├── my.properties │ │ │ │ │ ├── org.apache.karaf.features.xml │ │ │ │ │ ├── startup.properties │ │ │ │ │ ├── system.properties │ │ │ │ │ └── version.properties │ │ │ │ └── system │ │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── karaf │ │ │ │ │ └── instance │ │ │ │ │ └── org.apache.karaf.instance.core │ │ │ │ │ └── 4.2.0.redhat-700002 │ │ │ │ │ └── org.apache.karaf.instance.core-4.2.0.redhat-700002.jar │ │ │ ├── patch8 │ │ │ │ └── my-patch-8.patch │ │ │ └── patch9 │ │ │ │ ├── bin │ │ │ │ ├── setenv │ │ │ │ ├── start │ │ │ │ └── stop │ │ │ │ ├── etc │ │ │ │ ├── my.properties │ │ │ │ ├── org.apache.karaf.features.xml │ │ │ │ ├── startup.properties │ │ │ │ ├── system.properties │ │ │ │ └── version.properties │ │ │ │ └── system │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── fuse │ │ │ │ └── fuse-tranquility │ │ │ │ └── 1.2.4 │ │ │ │ └── fuse-tranquility-1.2.4.jar │ │ │ ├── descriptors │ │ │ └── my-patch-2.patch │ │ │ ├── files │ │ │ ├── bin │ │ │ │ ├── instance │ │ │ │ ├── instance.bat │ │ │ │ ├── instance.bat.updated │ │ │ │ └── instance.updated │ │ │ └── etc │ │ │ │ ├── config.properties │ │ │ │ ├── config.properties.updated │ │ │ │ ├── startup.properties │ │ │ │ └── startup.properties.updated │ │ │ ├── karaf │ │ │ ├── bin │ │ │ │ ├── instance │ │ │ │ ├── setenv │ │ │ │ ├── start │ │ │ │ └── stop │ │ │ ├── etc │ │ │ │ ├── startup.properties │ │ │ │ └── version.properties │ │ │ └── lib │ │ │ │ └── boot │ │ │ │ └── org.apache.karaf.main-4.2.0.redhat-700001.jar │ │ │ ├── karaf2 │ │ │ ├── bin │ │ │ │ ├── start │ │ │ │ └── stop │ │ │ ├── etc │ │ │ │ ├── startup.properties │ │ │ │ ├── system.properties │ │ │ │ └── version.properties │ │ │ ├── lib │ │ │ │ └── boot │ │ │ │ │ └── org.apache.karaf.main-4.2.0.redhat-700001.jar │ │ │ └── system │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── karaf │ │ │ │ └── instance │ │ │ │ └── org.apache.karaf.instance.core │ │ │ │ └── 4.2.0.redhat-700001 │ │ │ │ └── org.apache.karaf.instance.core-4.2.0.redhat-700001.jar │ │ │ ├── log4j2-test.properties │ │ │ └── processing │ │ │ ├── oakf.1.properties │ │ │ ├── oakf.1.xml │ │ │ ├── oakf.2.xml │ │ │ └── oakf.3.xml │ └── pom.xml ├── fuse-pax-jms-ibmmq-compatibility │ └── pom.xml ├── fuse-pax-transx-tm-narayana │ └── pom.xml ├── fuse-servlet-compatibility │ └── pom.xml ├── fuse-stax2-compatibility │ └── pom.xml └── pom.xml └── pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .idea 3 | target 4 | -------------------------------------------------------------------------------- /DEV.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/DEV.adoc -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/README.adoc -------------------------------------------------------------------------------- /assemblies/debug/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/debug/pom.xml -------------------------------------------------------------------------------- /assemblies/fuse-features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-features/pom.xml -------------------------------------------------------------------------------- /assemblies/fuse-features/rhba-features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-features/rhba-features/pom.xml -------------------------------------------------------------------------------- /assemblies/fuse-features/rhba-features/src/main/resources/features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-features/rhba-features/src/main/resources/features.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/pom.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/appended-resources/append-header.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/appended-resources/append-header.part -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/appended-resources/etc/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/appended-resources/etc/config.properties -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/feature/feature.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/distribution.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/distribution.info -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/maven-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/maven-settings.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/org.apache.karaf.features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/org.apache.karaf.features.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/org.ops4j.pax.logging.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/org.ops4j.pax.logging.cfg -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/org.ops4j.pax.transx.tm.narayana.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/org.ops4j.pax.transx.tm.narayana.cfg -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/org.ops4j.pax.url.mvn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/org.ops4j.pax.url.mvn.cfg -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/prometheus-config.yml-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/prometheus-config.yml-example -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/undertow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/undertow.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/users.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/users.properties -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/filtered-resources/resources/etc/version.properties -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/resources/resources/bin/fuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/resources/resources/bin/fuse -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/resources/resources/bin/fuse-inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/resources/resources/bin/fuse-inc -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/resources/resources/bin/fuse.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/resources/resources/bin/fuse.bat -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/resources/resources/deploy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/resources/resources/deploy/README -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/resources/resources/etc/custom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/resources/resources/etc/custom.properties -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/resources/resources/etc/jolokia-access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/resources/resources/etc/jolokia-access.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/resources/resources/etc/org.apache.felix.fileinstall-deploy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/resources/resources/etc/org.apache.felix.fileinstall-deploy.cfg -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/resources/resources/etc/org.apache.karaf.kar.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/resources/resources/etc/org.apache.karaf.kar.cfg -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/resources/resources/lib/boot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/resources/resources/lib/boot/README -------------------------------------------------------------------------------- /assemblies/fuse-karaf-framework/src/main/resources/resources/lib/endorsed/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-framework/src/main/resources/resources/lib/endorsed/README -------------------------------------------------------------------------------- /assemblies/fuse-karaf-minimal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-minimal/pom.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf-minimal/src/main/resources/assembly/etc/org.ops4j.pax.web.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf-minimal/src/main/resources/assembly/etc/org.ops4j.pax.web.cfg -------------------------------------------------------------------------------- /assemblies/fuse-karaf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/pom.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses.css -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses.xsl -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/alv2 - license-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/alv2 - license-2.0.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/apache license, version 2.0 - license-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/apache license, version 2.0 - license-2.0.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/apache license, version 2.0 - license-2.0.txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/apache license, version 2.0 - license-2.0.txt.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/apache software license, version 2.0 - apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/apache software license, version 2.0 - apache-2.0.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/bouncy castle licence - licence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/bouncy castle licence - licence.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/bsd - license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/bsd - license.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/cddl + gplv2 with classpath exception - cddl+gpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/cddl + gplv2 with classpath exception - cddl+gpl.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/common development and distribution license - cddl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/common development and distribution license - cddl.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/common development and distribution license version 1.1 - cddl-v1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/common development and distribution license version 1.1 - cddl-v1.1.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/eclipse public license - epl-v10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/eclipse public license - epl-v10.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/eclipse public license - version 1.0 - epl-v10.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/eclipse public license - version 1.0 - epl-v10.php.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/eclipse public license v1.0 - epl-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/eclipse public license v1.0 - epl-1.0.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/gnu general public license, version 2 with the classpath exception - gpl-2.0-ce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/gnu general public license, version 2 with the classpath exception - gpl-2.0-ce.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/gnu lesser general public license, version 2.1 - lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/gnu lesser general public license, version 2.1 - lgpl-2.1.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/lgpl 2.1 - lgpl-2.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/lgpl 2.1 - lgpl-2.1.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/lgpl, version 2.1 - licenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/lgpl, version 2.1 - licenses.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/mozilla public license, version 1.1 - mpl-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/mozilla public license, version 1.1 - mpl-1.1.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/public domain - cc0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/public domain - cc0-1.0.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/the apache software license, version 2.0 - license-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/the apache software license, version 2.0 - license-2.0.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/the asm bsd license - license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/the asm bsd license - license.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/the bsd license - bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/the bsd license - bsd.txt -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/license/licenses/w3c software notice and license - copyright-software-19980720.txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/license/licenses/w3c software notice and license - copyright-software-19980720.txt.html -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/main/descriptors/baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/main/descriptors/baseline.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/main/resources/assembly/etc/jolokia-access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/main/resources/assembly/etc/jolokia-access.xml -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/main/resources/assembly/etc/org.ops4j.pax.web.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/main/resources/assembly/etc/org.ops4j.pax.web.cfg -------------------------------------------------------------------------------- /assemblies/fuse-karaf/src/main/resources/notice-supplements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-karaf/src/main/resources/notice-supplements.xml -------------------------------------------------------------------------------- /assemblies/fuse-patch-management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-patch-management/pom.xml -------------------------------------------------------------------------------- /assemblies/fuse-patch-management/src/main/descriptors/patch-management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/fuse-patch-management/src/main/descriptors/patch-management.xml -------------------------------------------------------------------------------- /assemblies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/assemblies/pom.xml -------------------------------------------------------------------------------- /etc/fuse-checkstyle-suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/etc/fuse-checkstyle-suppressions.xml -------------------------------------------------------------------------------- /etc/fuse-checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/etc/fuse-checkstyle.xml -------------------------------------------------------------------------------- /itests/fuse-itests-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-common/pom.xml -------------------------------------------------------------------------------- /itests/fuse-itests-common/src/main/java/org/jboss/fuse/itests/karaf/FuseKarafTestSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-common/src/main/java/org/jboss/fuse/itests/karaf/FuseKarafTestSupport.java -------------------------------------------------------------------------------- /itests/fuse-itests-karaf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-karaf/pom.xml -------------------------------------------------------------------------------- /itests/fuse-itests-karaf/src/test/resources/controlled-exam.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-karaf/src/test/resources/controlled-exam.properties -------------------------------------------------------------------------------- /itests/fuse-itests-karaf/src/test/resources/etc/org.ops4j.pax.logging.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-karaf/src/test/resources/etc/org.ops4j.pax.logging.cfg -------------------------------------------------------------------------------- /itests/fuse-itests-karaf/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-karaf/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /itests/fuse-itests-paxexam/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-paxexam/pom.xml -------------------------------------------------------------------------------- /itests/fuse-itests-paxexam/src/test/java/org/jboss/fuse/itests/karaf/CredentialStoreIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-paxexam/src/test/java/org/jboss/fuse/itests/karaf/CredentialStoreIntegrationTest.java -------------------------------------------------------------------------------- /itests/fuse-itests-paxexam/src/test/java/org/jboss/fuse/itests/karaf/CredentialStoreJMXIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-paxexam/src/test/java/org/jboss/fuse/itests/karaf/CredentialStoreJMXIntegrationTest.java -------------------------------------------------------------------------------- /itests/fuse-itests-paxexam/src/test/java/org/jboss/fuse/itests/karaf/CredentialStoreStartupFailureIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-paxexam/src/test/java/org/jboss/fuse/itests/karaf/CredentialStoreStartupFailureIntegrationTest.java -------------------------------------------------------------------------------- /itests/fuse-itests-paxexam/src/test/java/org/jboss/fuse/itests/karaf/FullDistroIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-paxexam/src/test/java/org/jboss/fuse/itests/karaf/FullDistroIntegrationTest.java -------------------------------------------------------------------------------- /itests/fuse-itests-paxexam/src/test/java/org/jboss/fuse/itests/karaf/MinimalDistroIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-paxexam/src/test/java/org/jboss/fuse/itests/karaf/MinimalDistroIntegrationTest.java -------------------------------------------------------------------------------- /itests/fuse-itests-paxexam/src/test/resources-binary/credential.store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-paxexam/src/test/resources-binary/credential.store -------------------------------------------------------------------------------- /itests/fuse-itests-paxexam/src/test/resources/etc/org.ops4j.pax.logging.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-paxexam/src/test/resources/etc/org.ops4j.pax.logging.cfg -------------------------------------------------------------------------------- /itests/fuse-itests-paxexam/src/test/resources/etc/users.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-paxexam/src/test/resources/etc/users.properties -------------------------------------------------------------------------------- /itests/fuse-itests-paxexam/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/fuse-itests-paxexam/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /itests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/itests/pom.xml -------------------------------------------------------------------------------- /license-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/license-header.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/license.txt -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-blueprint/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-blueprint/pom.xml -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-blueprint/src/main/java/io/fabric8/karaf/blueprint/Fabric8PropertyEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-blueprint/src/main/java/io/fabric8/karaf/blueprint/Fabric8PropertyEvaluator.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/pom.xml -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/Check.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/Check.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/HealthChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/HealthChecker.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/ReadinessChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/ReadinessChecker.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/AbstractBundleChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/AbstractBundleChecker.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/AbstractChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/AbstractChecker.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/BlueprintState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/BlueprintState.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/BootFeaturesState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/BootFeaturesState.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/BundleState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/BundleState.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/CamelState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/CamelState.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/ChecksService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/ChecksService.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/FrameworkState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/FrameworkState.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/HealthCheckServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/HealthCheckServlet.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/ReadinessCheckServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/ReadinessCheckServlet.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/ScrState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/ScrState.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/WarState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-checks/src/main/java/io/fabric8/karaf/checks/internal/WarState.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-cm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-cm/pom.xml -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-cm/src/main/java/io/fabric8/karaf/cm/KubernetesConfigAdminBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-cm/src/main/java/io/fabric8/karaf/cm/KubernetesConfigAdminBridge.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-cm/src/main/java/io/fabric8/karaf/cm/KubernetesConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-cm/src/main/java/io/fabric8/karaf/cm/KubernetesConstants.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-cm/src/main/java/io/fabric8/karaf/cm/PlaceholderResolverConfigurationPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-cm/src/main/java/io/fabric8/karaf/cm/PlaceholderResolverConfigurationPlugin.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-cm/src/test/java/io/fabric8/karaf/cm/KubernetesConfigAdminBridgeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-cm/src/test/java/io/fabric8/karaf/cm/KubernetesConfigAdminBridgeTest.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/pom.xml -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/Support.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/Support.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/PlaceholderResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/PlaceholderResolver.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/PlaceholderResolverImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/PlaceholderResolverImpl.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/EnvPropertiesFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/EnvPropertiesFunction.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/KubernetesPropertiesFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/KubernetesPropertiesFunction.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/KubernetesSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/KubernetesSupport.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/PropertiesFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/PropertiesFunction.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/ServiceHostPropertiesFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/ServiceHostPropertiesFunction.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/ServicePortPropertiesFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/ServicePortPropertiesFunction.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/ServicePropertiesFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/ServicePropertiesFunction.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/SysPropertiesFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/main/java/io/fabric8/karaf/core/properties/function/SysPropertiesFunction.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-core/src/test/java/io/fabric8/karaf/core/properties/PlaceholderResolverTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-core/src/test/java/io/fabric8/karaf/core/properties/PlaceholderResolverTest.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-features/pom.xml -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-features/src/main/resources/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-features/src/main/resources/feature.xml -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-itests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-itests/pom.xml -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-itests/src/test/java/io/fabric8/karaf/itests/FeatureInstallationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-itests/src/test/java/io/fabric8/karaf/itests/FeatureInstallationTest.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-itests/src/test/java/io/fabric8/karaf/itests/ServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-itests/src/test/java/io/fabric8/karaf/itests/ServiceTest.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/fabric8-karaf-itests/src/test/java/io/fabric8/karaf/itests/TestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/fabric8-karaf-itests/src/test/java/io/fabric8/karaf/itests/TestBase.java -------------------------------------------------------------------------------- /modules/fabric8-karaf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fabric8-karaf/pom.xml -------------------------------------------------------------------------------- /modules/fuse-branding/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-branding/pom.xml -------------------------------------------------------------------------------- /modules/fuse-branding/src/main/resources/org/apache/karaf/branding/branding.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-branding/src/main/resources/org/apache/karaf/branding/branding.properties -------------------------------------------------------------------------------- /modules/fuse-credential-store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/README.md -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/pom.xml -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/AbstractCredentialStoreCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/AbstractCredentialStoreCommand.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/CreateCredentialStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/CreateCredentialStore.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/ListCredentialStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/ListCredentialStore.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/RemoveFromCredentialStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/RemoveFromCredentialStore.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/StoreInCredentialStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/StoreInCredentialStore.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/completers/CredentialStoreAlgorithmCompletionSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/credential/store/command/completers/CredentialStoreAlgorithmCompletionSupport.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/Decrypt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/Decrypt.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/Digest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/Digest.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/Encrypt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/Encrypt.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/Helpers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/Helpers.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/ListAlgorithms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/ListAlgorithms.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/completers/JasyptDigestAlgorithmsCompletionSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/completers/JasyptDigestAlgorithmsCompletionSupport.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/completers/JasyptPbeAlgorithmsCompletionSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/completers/JasyptPbeAlgorithmsCompletionSupport.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/support/FipsRandomIvGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/support/FipsRandomIvGenerator.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/support/FipsRandomSaltGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/main/java/org/jboss/fuse/jasypt/commands/support/FipsRandomSaltGenerator.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/test/java/org/jboss/fuse/credential/store/command/CreateCredentialStoreTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/test/java/org/jboss/fuse/credential/store/command/CreateCredentialStoreTest.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/test/java/org/jboss/fuse/jasypt/commands/JasypDecryptionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/test/java/org/jboss/fuse/jasypt/commands/JasypDecryptionTest.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/test/java/org/jboss/fuse/jasypt/commands/JasypEncriptionCommandTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/test/java/org/jboss/fuse/jasypt/commands/JasypEncriptionCommandTest.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-commands/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-commands/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/pom.xml -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/CredentialStoreConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/CredentialStoreConfiguration.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/CredentialStoreHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/CredentialStoreHelper.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/CredentialStoreService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/CredentialStoreService.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/cm/ConfigurationAdminWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/cm/ConfigurationAdminWrapper.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/cm/EncryptingPersistenceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/cm/EncryptingPersistenceManager.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/cm/FileInstallEventListenerHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/cm/FileInstallEventListenerHook.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/cm/FileInstallFindHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/cm/FileInstallFindHook.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/impl/Activator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/impl/Activator.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/impl/CredentialStoreServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/jboss/fuse/credential/store/impl/CredentialStoreServiceImpl.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/wildfly/security/password/PasswordFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/main/java/org/wildfly/security/password/PasswordFactory.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/test/java/org/jboss/fuse/credential/store/impl/ActivatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/test/java/org/jboss/fuse/credential/store/impl/ActivatorTest.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/test/java/org/jboss/fuse/credential/store/util/CredentialStoreHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/test/java/org/jboss/fuse/credential/store/util/CredentialStoreHelperTest.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/test/java/org/jboss/fuse/credential/store/util/ElytronTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/test/java/org/jboss/fuse/credential/store/util/ElytronTest.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/test/java/org/jboss/fuse/credential/store/util/SecurityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/test/java/org/jboss/fuse/credential/store/util/SecurityTest.java -------------------------------------------------------------------------------- /modules/fuse-credential-store/fuse-credential-store-core/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/fuse-credential-store-core/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /modules/fuse-credential-store/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-credential-store/pom.xml -------------------------------------------------------------------------------- /modules/fuse-el2-compatibility/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-el2-compatibility/pom.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/pom.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/AddCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/AddCommand.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/DeleteCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/DeleteCommand.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/FindCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/FindCommand.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/InstallCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/InstallCommand.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/ListCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/ListCommand.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/PatchCommandSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/PatchCommandSupport.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/RollbackCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/RollbackCommand.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/ShowCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/ShowCommand.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/SimulateCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/SimulateCommand.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/UpdateCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/UpdateCommand.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/completers/InstallPatchCompleter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/completers/InstallPatchCompleter.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/completers/PatchCompleter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/completers/PatchCompleter.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/completers/UninstallPatchCompleter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/completers/UninstallPatchCompleter.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/model/FuseVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-commands/src/main/java/org/jboss/fuse/patch/commands/model/FuseVersion.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core-api/pom.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core-api/src/main/java/org/jboss/fuse/patch/PatchService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core-api/src/main/java/org/jboss/fuse/patch/PatchService.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/pom.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/main/java/org/jboss/fuse/patch/impl/OSGiPatchHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/main/java/org/jboss/fuse/patch/impl/OSGiPatchHelper.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/main/java/org/jboss/fuse/patch/impl/PatchServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/main/java/org/jboss/fuse/patch/impl/PatchServiceImpl.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/main/java/org/jboss/fuse/patch/impl/Presentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/main/java/org/jboss/fuse/patch/impl/Presentation.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/java/org/jboss/fuse/patch/impl/PatchServiceImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/java/org/jboss/fuse/patch/impl/PatchServiceImplTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/java/org/jboss/fuse/patch/impl/PatchTestSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/java/org/jboss/fuse/patch/impl/PatchTestSupport.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/files/files2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/files/files2.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/files/files3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/files/files3.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/prereq/patch1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/prereq/patch1.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/prereq/patch2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/prereq/patch2.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/prereq/patch3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/prereq/patch3.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/prereq/prereq2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/prereq/prereq2.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/prereq/prereq3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/prereq/prereq3.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/prereq/prereq3.patch.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/prereq/prereq3.patch.result -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/test-with-prereq.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/test-with-prereq.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/test1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/test1.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/test2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/test2.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-core/src/test/resources/uber-startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-core/src/test/resources/uber-startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-features/pom.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-features/src/main/resources/patch-features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-features/src/main/resources/patch-features.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/pom.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/java/org/jboss/fuse/patch/itests/AbstractPatchIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/java/org/jboss/fuse/patch/itests/AbstractPatchIntegrationTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/java/org/jboss/fuse/patch/itests/PatchBundlesCommandIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/java/org/jboss/fuse/patch/itests/PatchBundlesCommandIntegrationTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/java/org/jboss/fuse/patch/itests/PatchBundlesIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/java/org/jboss/fuse/patch/itests/PatchBundlesIntegrationTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/java/org/jboss/fuse/patch/itests/PatchFilesIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/java/org/jboss/fuse/patch/itests/PatchFilesIntegrationTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/resources/etc/org.ops4j.pax.logging.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/resources/etc/org.ops4j.pax.logging.cfg -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/resources/etc/users.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/resources/etc/users.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/resources/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/resources/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/resources/log4j2.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/resources/patches/file-01.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/resources/patches/file-01.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/resources/patches/file-02.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/resources/patches/file-02.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/resources/patches/patch-01.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/resources/patches/patch-01.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/resources/patches/patch-02-without-range.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/resources/patches/patch-02-without-range.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-itests/src/test/resources/patches/patch-02.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-itests/src/test/resources/patches/patch-02.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/pom.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/eclipse/jgit/errors/StopWalkException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/eclipse/jgit/errors/StopWalkException.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/eclipse/jgit/nls/NLS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/eclipse/jgit/nls/NLS.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/Artifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/Artifact.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/BackupService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/BackupService.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/BundleUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/BundleUpdate.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/CVE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/CVE.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/EnvService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/EnvService.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/EnvType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/EnvType.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/FeatureUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/FeatureUpdate.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/ManagedPatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/ManagedPatch.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/Patch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/Patch.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchData.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchDetailsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchDetailsRequest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchException.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchKind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchKind.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchManagement.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchReport.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/PatchResult.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/Pending.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/Pending.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/Utils.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/ChooseUserVersionResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/ChooseUserVersionResolver.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/ConflictResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/ConflictResolver.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/DiffUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/DiffUtils.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/KarafFeaturesPropertiesFileResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/KarafFeaturesPropertiesFileResolver.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/PropertiesFileResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/PropertiesFileResolver.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/Resolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/Resolver.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/ResolverEx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/ResolverEx.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/SetEnvBatResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/SetEnvBatResolver.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/SetEnvResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/SetEnvResolver.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/UsersPropertiesResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/conflicts/UsersPropertiesResolver.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/Activator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/Activator.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/DefaultEnvService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/DefaultEnvService.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/FileBackupService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/FileBackupService.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/GitPatchManagementService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/GitPatchManagementService.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/GitPatchManagementServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/GitPatchManagementServiceImpl.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/GitPatchRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/GitPatchRepository.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/GitPatchRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/GitPatchRepositoryImpl.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/InternalUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/impl/InternalUtils.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/io/EOLFixingFileOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/io/EOLFixingFileOutputStream.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/io/EOLFixingFileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/io/EOLFixingFileUtils.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/io/NtfsAwareCheckoutCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/io/NtfsAwareCheckoutCommand.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/java/org/jboss/fuse/patch/management/package-info.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/resources/patch-file-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/resources/patch-file-footer.html -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/resources/patch-file-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/resources/patch-file-header.html -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/resources/patch-report-footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/main/resources/patch-report-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/main/resources/patch-report-header.html -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/FeatureProcessingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/FeatureProcessingTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/GitPatchManagementServiceForStandaloneChildContainersIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/GitPatchManagementServiceForStandaloneChildContainersIT.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/GitPatchManagementServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/GitPatchManagementServiceIT.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/GitPatchRepositoryIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/GitPatchRepositoryIT.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/PatchDataTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/PatchDataTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/PatchManagementIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/PatchManagementIT.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/PatchTestSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/PatchTestSupport.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/UtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/UtilsTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/conflicts/ConflictResolutionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/conflicts/ConflictResolutionTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/conflicts/GitConflictResolutionIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/conflicts/GitConflictResolutionIT.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/impl/FileBackupTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/impl/FileBackupTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/impl/ProtectedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/impl/ProtectedTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/io/EOLFixesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/java/org/jboss/fuse/patch/management/io/EOLFixesTest.java -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/bin/setenv: -------------------------------------------------------------------------------- 1 | JAVA_MIN_MEM=512M # Minimum memory for the JVM -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/bin/start -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/bin/stop -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/etc/system.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/etc/system.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline1/lib/org.apache.karaf.main-4.2.0.redhat-700-SNAPSHOT.jar: -------------------------------------------------------------------------------- 1 | JAR1 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/bin/start -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/bin/stop -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/etc/system.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/etc/system.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline2/lib/org.apache.karaf.main-4.2.0.redhat-700-SNAPSHOT.jar: -------------------------------------------------------------------------------- 1 | JAR1 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline3/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline3/bin/start -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline3/bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline3/bin/stop -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline3/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline3/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline3/etc/system.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline3/etc/system.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline3/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline3/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline4/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline4/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline4/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline4/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/bin/setenv: -------------------------------------------------------------------------------- 1 | JAVA_MIN_MEM=512M # Minimum memory for the JVM -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/bin/start -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/bin/stop -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/etc/org.apache.karaf.features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/etc/org.apache.karaf.features.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/etc/system.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/etc/system.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline5/lib/org.apache.karaf.main-4.2.0.redhat-700-SNAPSHOT.jar: -------------------------------------------------------------------------------- 1 | JAR1 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline6/etc/org.apache.karaf.features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline6/etc/org.apache.karaf.features.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline6/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline6/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/baselines/baseline6/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/baselines/baseline6/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/fuse-karaf-7.0.0.fuse-000160.patch.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/fuse-karaf-7.0.0.fuse-000160.patch.result -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/org.ops4j.pax.logging.base-original-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/org.ops4j.pax.logging.base-original-example.html -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/org.ops4j.pax.logging.base.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/org.ops4j.pax.logging.base.cfg -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/org.ops4j.pax.logging.custom.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/org.ops4j.pax.logging.custom.cfg -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/org.ops4j.pax.logging.patched.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/org.ops4j.pax.logging.patched.cfg -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/org.ops4j.pax.logging.test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example1/org.ops4j.pax.logging.test.html -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.base.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.base.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.custom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.custom.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.expected-first.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.expected-first.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.expected-second.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.expected-second.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.expected2-first.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.expected2-first.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.expected2-second.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.expected2-second.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.patched.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example2/file.patched.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/maven-settings.base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/maven-settings.base.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/maven-settings.custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/maven-settings.custom.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/maven-settings.patched.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/maven-settings.patched.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/org.apache.karaf.features.after-create.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/org.apache.karaf.features.after-create.cfg -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/org.apache.karaf.features.base.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/org.apache.karaf.features.base.cfg -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/org.apache.karaf.features.expected-after-rollback.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/org.apache.karaf.features.expected-after-rollback.cfg -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/org.apache.karaf.features.expected.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/org.apache.karaf.features.expected.cfg -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/org.apache.karaf.features.patched.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/example3/org.apache.karaf.features.patched.cfg -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.base.txt -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.bat.base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.bat.base.txt -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.bat.custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.bat.custom.txt -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.bat.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.bat.expected.txt -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.bat.patched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.bat.patched.txt -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.custom.txt -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.expected.txt -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.patched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/setenv.patched.txt -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/users.base.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/users.base.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/users.custom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/users.custom.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/users.expected.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/users.expected.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/conflicts/users.patched.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/conflicts/users.patched.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch1/bin/setenv: -------------------------------------------------------------------------------- 1 | JAVA_MIN_MEM=1024M # Minimum memory for the JVM 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch1/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch1/bin/start -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch1/etc/my.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch1/etc/my.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch1/my-patch-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch1/my-patch-1.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch1/system/org/jboss/fuse/fuse-tranquility/1.2.3/fuse-tranquility-1.2.3.jar: -------------------------------------------------------------------------------- 1 | JAR 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch10/my-patch-10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch10/my-patch-10.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch10/org.apache.karaf.features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch10/org.apache.karaf.features.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch2/my-patch-2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch2/my-patch-2.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch2/system/org/jboss/fuse/fuse-tranquility/1.2.5/fuse-tranquility-1.2.5.jar: -------------------------------------------------------------------------------- 1 | JAR 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch3/bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch3/bin/stop -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch3/etc/my.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch3/etc/my.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch3/system/org/jboss/fuse/fuse-colours/1.2.3/fuse-colours-1.2.3.jar: -------------------------------------------------------------------------------- 1 | JAR 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch4/bin/fuse: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch4/bin/setenv: -------------------------------------------------------------------------------- 1 | JAVA_MIN_MEM=512M # Minimum memory for the JVM -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch4/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch4/bin/start -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch4/bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch4/bin/stop -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch4/etc/my.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch4/etc/my.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch4/etc/org.apache.karaf.features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch4/etc/org.apache.karaf.features.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch4/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch4/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch4/etc/system.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch4/etc/system.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch4/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch4/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch4/system/org/jboss/fuse/fuse-tranquility/1.2.4/fuse-tranquility-1.2.4.jar: -------------------------------------------------------------------------------- 1 | JAR 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch5/my-patch-5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch5/my-patch-5.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch5/system/org/jboss/fuse/fuse-zen/1.2.0/fuse-zen-1.2.0.war: -------------------------------------------------------------------------------- 1 | WAR 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch6/my-patch-6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch6/my-patch-6.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch6/system/org/jboss/fuse/fuse-zen/1.3.3/fuse-zen-1.3.3.war: -------------------------------------------------------------------------------- 1 | WAR 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch7/bin/fuse: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch7/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch7/bin/start -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch7/bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch7/bin/stop -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch7/etc/my.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch7/etc/my.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch7/etc/org.apache.karaf.features.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch7/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch7/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch7/etc/system.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch7/etc/system.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch7/etc/version.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch7/system/org/apache/karaf/instance/org.apache.karaf.instance.core/4.2.0.redhat-700002/org.apache.karaf.instance.core-4.2.0.redhat-700002.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch7/system/org/apache/karaf/instance/org.apache.karaf.instance.core/4.2.0.redhat-700002/org.apache.karaf.instance.core-4.2.0.redhat-700002.jar -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch8/my-patch-8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch8/my-patch-8.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch9/bin/setenv: -------------------------------------------------------------------------------- 1 | JAVA_MIN_MEM=512M # Minimum memory for the JVM -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch9/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch9/bin/start -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch9/bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch9/bin/stop -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch9/etc/my.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch9/etc/my.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch9/etc/org.apache.karaf.features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch9/etc/org.apache.karaf.features.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch9/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch9/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch9/etc/system.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch9/etc/system.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch9/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/content/patch9/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/content/patch9/system/org/jboss/fuse/fuse-tranquility/1.2.4/fuse-tranquility-1.2.4.jar: -------------------------------------------------------------------------------- 1 | JAR 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/descriptors/my-patch-2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/descriptors/my-patch-2.patch -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/files/bin/instance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/files/bin/instance -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/files/bin/instance.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/files/bin/instance.bat -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/files/bin/instance.bat.updated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/files/bin/instance.bat.updated -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/files/bin/instance.updated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/files/bin/instance.updated -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/files/etc/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/files/etc/config.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/files/etc/config.properties.updated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/files/etc/config.properties.updated -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/files/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/files/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/files/etc/startup.properties.updated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/files/etc/startup.properties.updated -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf/bin/instance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf/bin/instance -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf/bin/setenv: -------------------------------------------------------------------------------- 1 | JAVA_MIN_MEM=2G # Minimum memory for the JVM 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf/bin/start -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf/bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf/bin/stop -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf/lib/boot/org.apache.karaf.main-4.2.0.redhat-700001.jar: -------------------------------------------------------------------------------- 1 | JAR1 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf2/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf2/bin/start -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf2/bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf2/bin/stop -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf2/etc/startup.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf2/etc/startup.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf2/etc/system.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf2/etc/system.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf2/etc/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf2/etc/version.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf2/lib/boot/org.apache.karaf.main-4.2.0.redhat-700001.jar: -------------------------------------------------------------------------------- 1 | JAR1 2 | -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/karaf2/system/org/apache/karaf/instance/org.apache.karaf.instance.core/4.2.0.redhat-700001/org.apache.karaf.instance.core-4.2.0.redhat-700001.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/karaf2/system/org/apache/karaf/instance/org.apache.karaf.instance.core/4.2.0.redhat-700001/org.apache.karaf.instance.core-4.2.0.redhat-700001.jar -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/log4j2-test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/log4j2-test.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/processing/oakf.1.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/processing/oakf.1.properties -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/processing/oakf.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/processing/oakf.1.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/processing/oakf.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/processing/oakf.2.xml -------------------------------------------------------------------------------- /modules/fuse-patch/patch-management/src/test/resources/processing/oakf.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/patch-management/src/test/resources/processing/oakf.3.xml -------------------------------------------------------------------------------- /modules/fuse-patch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-patch/pom.xml -------------------------------------------------------------------------------- /modules/fuse-pax-jms-ibmmq-compatibility/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-pax-jms-ibmmq-compatibility/pom.xml -------------------------------------------------------------------------------- /modules/fuse-pax-transx-tm-narayana/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-pax-transx-tm-narayana/pom.xml -------------------------------------------------------------------------------- /modules/fuse-servlet-compatibility/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-servlet-compatibility/pom.xml -------------------------------------------------------------------------------- /modules/fuse-stax2-compatibility/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/fuse-stax2-compatibility/pom.xml -------------------------------------------------------------------------------- /modules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/modules/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jboss-fuse/fuse-karaf/HEAD/pom.xml --------------------------------------------------------------------------------