Skip to content

Instantly share code, notes, and snippets.

@android-leha
Created June 10, 2020 22:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save android-leha/8f5729f6322dc4b943f735bf7f0573b2 to your computer and use it in GitHub Desktop.
Save android-leha/8f5729f6322dc4b943f735bf7f0573b2 to your computer and use it in GitHub Desktop.
resource "nexus_repository" "maven_proxy_central" {
name = "maven-central"
format = "maven2"
type = "proxy"
online = true
http_client {
}
proxy {
remote_url = "https://repo1.maven.org/maven2/"
content_max_age = -1
}
maven {
version_policy = "RELEASE"
layout_policy = "STRICT"
}
negative_cache {
enabled = false
ttl = 1440
}
storage {
blob_store_name = "default"
strict_content_type_validation = true
write_policy = "ALLOW_ONCE"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment