Skip to main content

mvnproxy

Project description

Maven local proxy.

Installation

pip install mvnproxy

Configuration

To configure mvnproxy you need to at least specify some mirrors to be used. The full list of configurable parameters is visible here:

host: 0.0.0.0
port: 6990
cache_folder: /home/raptor/tmp/mvnproxy
mirrors:
- url: https://repo.maven.apache.org/maven2
- url: http://repo1.sample.net/artifactory/cool-artifacts/
- url: https://secure-repo2.sample.net/nexus3/also-cool/
  auth:
    user: myuser
    pass: {USER_PASS}

Each mirror in turn supports auth configuration where the user and pass can be specified. If no auth is specified, it simply does unauthenticated requests.

Environment variables such as the USER_PASS can be interpolated in the configuration using the curly bracket notation.

Maven Configuration

Maven also needs to be configured in oredr to use the mvnproxy. To see the required configuration you can either open the http://localhost:6990/ or just use in the .m2/settings.xml:

<settings>
  <mirrors>
    <mirror>
      <id>central</id>
      <name>central</name>
      <url>http://localhost:6990/repo</url>
      <mirrorOf>*</mirrorOf>
    </mirror>
  </mirrors>
  <profiles>
    <profile>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <repositories>
        <repository>
          <id>central</id>
          <name>central</name>
          <url>http://localhost:6990/repo</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
        </repository>
      </repositories>
    </profile>
  </profiles>
</settings>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mvnproxy-1.2.0.tar.gz (9.3 kB view details)

Uploaded Source

File details

Details for the file mvnproxy-1.2.0.tar.gz.

File metadata

  • Download URL: mvnproxy-1.2.0.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.8

File hashes

Hashes for mvnproxy-1.2.0.tar.gz
Algorithm Hash digest
SHA256 96c64a020dbb777ea1004c3519ca2fcc845551c5bc7c45b914d2bae43651bb45
MD5 68b7d3a108bffefb5bd815fa80545fc4
BLAKE2b-256 fb9d1f69be76bf3d94931f0ad433c62368080944181f2985790b88ca41091763

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page