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 hashes)

Uploaded Source

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