codegenomeproject

You're signed in

Signed in as acme. Generate a download token to use as your repository credential. Give it to CI and revoke it on its own, without touching your password. Your username and password work as a credential too.

Lost a token? It can't be recovered. Generate a new one here, then revoke the old one in the list below.

New token: copy it now, it's shown only once
••••••••••••••••••••••••••••••••••••••••
Maven: ~/.m2/settings.xml
<settings>
  <servers>
    <server>
      <id>codegenome</id>
      <username>acme</username>
      <password>cgp_7Fq2Yx9pLmN4dRt8Ke1WvZ0aBcD3sGhJ</password>
    </server>
  </servers>
</settings>
Maven: pom.xml
<repositories>
  <repository>
    <id>codegenome</id>
    <url>https://artifacts.codegenomeproject.org/maven</url>
  </repository>
</repositories>
Gradle (Kotlin): build.gradle.kts
repositories {
    maven {
        url = uri("https://artifacts.codegenomeproject.org/maven")
        credentials {
            username = "acme"
            password = "cgp_7Fq2Yx9pLmN4dRt8Ke1WvZ0aBcD3sGhJ"
        }
    }
}
Gradle (Groovy): build.gradle
repositories {
    maven {
        url = 'https://artifacts.codegenomeproject.org/maven'
        credentials {
            username = 'acme'
            password = 'cgp_7Fq2Yx9pLmN4dRt8Ke1WvZ0aBcD3sGhJ'
        }
    }
}

This token works anywhere your password does, including MCP over HTTP Basic auth.

Active tokens

Shown by a short id. The token itself appears only once, when created.

#a1b2c3d4 created 2026-07-20 09:14 UTC
#f9e8d7c6 created 2026-07-21 15:02 UTC
Back to Code Genome