Какие репозитории вы помещаете в общий файл pom? - PullRequest
2 голосов
/ 15 февраля 2011

Я создаю общий родительский файл pom для моих проектов.

В этом файле я хотел бы иметь список наиболее распространенных репозиториев Maven, чтобы большинство зависимостей было доступно в подпроектах (Jboss, Spring и т. Д.).

Вот этот текущий пом:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.courtine</groupId>
    <artifactId>parent</artifactId>
    <packaging>pom</packaging>
    <name>Parent</name>
    <version>1.0</version>
    <description>Common repositories</description>
    <repositories>
        <repository>
            <id>javanet</id>
            <name>Repository for Maven2</name>
            <url>http://download.java.net/maven/2</url>
        </repository>
        <repository>
            <id>google</id>
            <name>Google repository for Maven2</name>
            <url>https://oss.sonatype.org/content/repositories/google-releases/</url>
        </repository>
        <repository>
            <id>jboss</id>
            <name>JBoss repository for Maven2</name>
            <url>http://repository.jboss.org/maven2/</url>
        </repository>
        <repository>
            <id>com.springsource.repository.bundles.release</id>
            <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
            <url>http://repository.springsource.com/maven/bundles/release</url>
        </repository>
        <repository>
            <id>com.springsource.repository.bundles.external</id>
            <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
            <url>http://repository.springsource.com/maven/bundles/external</url>
        </repository>
        <repository>
            <id>com.springsource.repository.libraries.release</id>
            <name>SpringSource Enterprise Bundle Repository - SpringSource Library Releases</name>
            <url>http://repository.springsource.com/maven/libraries/release</url>
        </repository>
        <repository>
            <id>com.springsource.repository.libraries.external</id>
            <name>SpringSource Enterprise Bundle Repository - External Library Releases</name>
            <url>http://repository.springsource.com/maven/libraries/external</url>
        </repository>
    </repositories>
</project>
  1. Является ли такой общий список файлов общих репозиториев хорошей идеей?
  2. Знаете ли вы другие распространенные общедоступные репозитории Maven для размещения такого универсального файла pom?

Ответы [ 2 ]

3 голосов
/ 24 мая 2011

У меня есть другая возможность делать то, что ты хочешь делать. Вы можете использовать профиль в вашем settings.xml, который ссылается на весь ваш репозиторий для вас (как подойдет nexus / archiva). Я написал кое-что о нем на моем сайте .

Просто добавьте это в ваш settings.xml:

<profile>
    <id>my-repository</id>
    <activation>
    <!-- here we did not activat this profile by default -->
            <activeByDefault>false</activeByDefault>
    </activation>
    <repositories>
    <!-- list of standard repository -->
    <repository>
        <id>javanet</id>
        <name>Repository for Maven2</name>
        <url>http://download.java.net/maven/2</url>
    </repository>
    <repository>
        <id>google</id>
        <name>Google repository for Maven2</name>
        <url>https://oss.sonatype.org/content/repositories/google-releases/</url>
    </repository>
    <repository>
        <id>jboss</id>
        <name>JBoss repository for Maven2</name>
        <url>http://repository.jboss.org/maven2/</url>
    </repository>
    <repository>
        <id>com.springsource.repository.bundles.release</id>
        <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
        <url>http://repository.springsource.com/maven/bundles/release</url>
    </repository>
    <repository>
        <id>com.springsource.repository.bundles.external</id>
        <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
        <url>http://repository.springsource.com/maven/bundles/external</url>
    </repository>
    <repository>
        <id>com.springsource.repository.libraries.release</id>
        <name>SpringSource Enterprise Bundle Repository - SpringSource Library Releases</name>
        <url>http://repository.springsource.com/maven/libraries/release</url>
    </repository>
    <repository>
        <id>com.springsource.repository.libraries.external</id>
        <name>SpringSource Enterprise Bundle Repository - External Library Releases</name>
        <url>http://repository.springsource.com/maven/libraries/external</url>
    </repository>
     <repository>
        <id>intelligents-ia</id>
        <name>Intelligents-ia Repository</name>
        <url>http://intelligents-ia.com/maven2</url>
     </repository>
    </repositories>
    </profile>

И вы можете построить свой проект, добавив -Pmy-repository в командной строке:

mvn -Pmy-repository clean install

Или активируйте этот профиль по умолчанию, установив true на:

<activation>
       <activeByDefault>true</activeByDefault>
</activation>
3 голосов
/ 15 февраля 2011

Не стоит помещать репозитории в пом. Лучше использовать менеджер репозитория, такой как Nexus , Artifactory или Archiva . В такого рода помпах вы должны поместить такие вещи, как плагины по умолчанию с их соответствующими ревизиями (pluginManagement) или зависимостями, которые следует использовать (dependencyManagement).

Найдите объяснение в этом . и посмотрите здесь как это настроить.

...