Java Code Examples for org.sonatype.nexus.pax.exam.NexusPaxExamSupport#options()

The following examples show how to use org.sonatype.nexus.pax.exam.NexusPaxExamSupport#options() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RHostedIT.java    From nexus-repository-r with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-r"),
      editConfigurationFileExtend(NEXUS_PROPERTIES_FILE, "nexus.r.packagesBuilder.interval",
          String.valueOf(METADATA_PROCESSING_DELAY_MILLIS))
  );
}
 
Example 2
Source File: ConanProxyIT.java    From nexus-repository-conan with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-conan")
  );
}
 
Example 3
Source File: CleanupTaskConanProxyIT.java    From nexus-repository-conan with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-conan")
  );
}
 
Example 4
Source File: ConanRoutingRuleIT.java    From nexus-repository-conan with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-conan")
  );
}
 
Example 5
Source File: ConanProxySearchIT.java    From nexus-repository-conan with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-conan")
  );
}
 
Example 6
Source File: RRoutingRuleIT.java    From nexus-repository-r with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-r")
  );
}
 
Example 7
Source File: RGroupIT.java    From nexus-repository-r with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-r"),
      editConfigurationFileExtend(NEXUS_PROPERTIES_FILE, "nexus.r.packagesBuilder.interval",
          String.valueOf(METADATA_PROCESSING_DELAY_MILLIS))
  );
}
 
Example 8
Source File: RProxyIT.java    From nexus-repository-r with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-r")
  );
}
 
Example 9
Source File: CleanupTaskRIT.java    From nexus-repository-r with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-r"),
      editConfigurationFileExtend(NEXUS_PROPERTIES_FILE, "nexus.r.packagesBuilder.interval",
          String.valueOf(METADATA_PROCESSING_DELAY_MILLIS))
  );
}
 
Example 10
Source File: RRestoreBlobIT.java    From nexus-repository-r with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-r"),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-restore-r")
  );
}
 
Example 11
Source File: DeploymentFailsForFirestoreNativeIT.java    From nexus-blobstore-google-cloud with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-blobstore-google-cloud")
  );
}
 
Example 12
Source File: HelmITConfig.java    From nexus-repository-helm with Eclipse Public License 1.0 5 votes vote down vote up
public static Option[] configureHelmBase() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-helm"),
      systemProperty("nexus-exclude-features").value("nexus-cma-community, nexus-community-feature")
  );
}
 
Example 13
Source File: HelmContentITSupport.java    From nexus-repository-helm with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-helm"),
      systemProperty("nexus-exclude-features").value("nexus-cma-community, nexus-community-feature")
  );
}
 
Example 14
Source File: HelmRestoreBlobIT.java    From nexus-repository-helm with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      configureHelmBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-restore-helm")
  );
}
 
Example 15
Source File: P2RestoreBlobIT.java    From nexus-repository-p2 with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-p2"),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-restore-p2")
  );
}
 
Example 16
Source File: P2RoutingRuleIT.java    From nexus-repository-p2 with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-p2")
  );
}
 
Example 17
Source File: P2ProxyIT.java    From nexus-repository-p2 with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-p2")
  );
}
 
Example 18
Source File: CleanupTaskP2ProxyIT.java    From nexus-repository-p2 with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-p2")
  );
}
 
Example 19
Source File: ComposerProxyIT.java    From nexus-repository-composer with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-repository-composer")
  );
}
 
Example 20
Source File: SuccessfulDeploymentIT.java    From nexus-blobstore-google-cloud with Eclipse Public License 1.0 5 votes vote down vote up
@Configuration
public static Option[] configureNexus() {
  return NexusPaxExamSupport.options(
      NexusITSupport.configureNexusBase(),
      nexusFeature("org.sonatype.nexus.plugins", "nexus-blobstore-google-cloud")
  );
}