diff options
author | Uwe Stieber | 2012-05-04 16:46:39 +0000 |
---|---|---|
committer | Uwe Stieber | 2012-05-04 16:46:39 +0000 |
commit | 8893664f88c99123e50d46401358ad082b9be00d (patch) | |
tree | 5c89ba714df534666bcc3107c2f4b3d6ce67d6fc /admin | |
parent | 9dfd8ae71e17424a35f240cbf9d6b25438835679 (diff) | |
download | org.eclipse.tcf-8893664f88c99123e50d46401358ad082b9be00d.tar.gz org.eclipse.tcf-8893664f88c99123e50d46401358ad082b9be00d.tar.xz org.eclipse.tcf-8893664f88c99123e50d46401358ad082b9be00d.zip |
Target Explorer: Add Eclipse CBI parent pom.xml
Diffstat (limited to 'admin')
-rw-r--r-- | admin/pom-config.xml | 6 | ||||
-rw-r--r-- | admin/settings.xml | 75 |
2 files changed, 81 insertions, 0 deletions
diff --git a/admin/pom-config.xml b/admin/pom-config.xml index 439adf924..6a54e8da3 100644 --- a/admin/pom-config.xml +++ b/admin/pom-config.xml @@ -8,6 +8,12 @@ <maven>3.0</maven> </prerequisites> + <parent> + <groupId>org.eclipse</groupId> + <artifactId>eclipse-parent</artifactId> + <version>3</version> + </parent> + <groupId>org.eclipse.tcf</groupId> <artifactId>org.eclipse.tcf.maven-config</artifactId> <version>1.0.0-SNAPSHOT</version> diff --git a/admin/settings.xml b/admin/settings.xml new file mode 100644 index 000000000..314b102b4 --- /dev/null +++ b/admin/settings.xml @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?> +<settings> + +<!-- + Eclipse.org committers or build engineers should uncomment this section and fill in as + appropriate for releasing and deploying items to the Nexus repository. Add as many + server entries as you need. These should correspond to your Distribution management ids as well. + + <servers> + <server> + <id>eclipse-milestone</id> + <username>my_login</username> + <password>my_password</password> + <privateKey>${user.home}/.ssh/id_dsa</privateKey> + </server> + </servers> +--> + <mirrors> + <mirror> + <id>eclipse-central</id> + <mirrorOf>central</mirrorOf> + <url>http://maven.eclipse.org/nexus/content/groups/central/</url> + </mirror> + <mirror> + <id>eclipse-repositories</id> + <mirrorOf>milestone,integration,nightly,*</mirrorOf> + <url>http://maven.eclipse.org/nexus/content/groups/public/</url> + </mirror> + </mirrors> + +<profiles> + <profile> + <id>milestone</id> + <activation><activeByDefault>false</activeByDefault></activation> + <repositories> + <repository> + <id>milestone</id> + <name>Milestone releases</name> + <url>http://maven.eclipse.org/milestone</url> + <snapshots><enabled>false</enabled></snapshots> + </repository> + </repositories> + </profile> + <profile> + <id>integration</id> + <activation><activeByDefault>false</activeByDefault></activation> + <repositories> + <repository> + <id>integration</id> + <name>Integration releases</name> + <url>http://maven.eclipse.org/integration</url> + <snapshots><enabled>true</enabled></snapshots> + </repository> + </repositories> + </profile> + <profile> + <id>nightly</id> + <activation><activeByDefault>false</activeByDefault></activation> + <repositories> + <repository> + <id>nightly</id> + <name>Nightly releases</name> + <url>http://maven.eclipse.org/nightly</url> + <snapshots><enabled>true</enabled></snapshots> + </repository> + </repositories> + </profile> + </profiles> + + <activeProfiles> + <activeProfile>milestone</activeProfile> + <activeProfile>nightly</activeProfile> + </activeProfiles> + +</settings> |