Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Backports:SLE-15-SP6
glassfish-master-pom
pom-8.pom
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File pom-8.pom of Package glassfish-master-pom
<?xml version="1.0" encoding="UTF-8"?> <!-- /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can obtain * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt. * Sun designates this particular file as subject to the "Classpath" exception * as provided by Sun in the GPL Version 2 section of the License file that * accompanied this code. If applicable, add the following below the License * Header, with the fields enclosed by brackets [] replaced by your own * identifying information: "Portions Copyrighted [year] * [name of copyright owner]" * * Contributor(s): * * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ --> <!-- GlassFish master POM ==================== This POM is the organization root POM, from which all the components in the GlassFish umbrella extends from. A similar POM for other organizations can be seen in [1]. The point of this POM is to provide organizational information, repository location, and license information. The nature of the POM makes it unsuitable for putting information that changes frequently, so this is not a place for example to define properies that designate component versions that GlassFish depends on. In an attempt to control the build stability with SNAPSHOTs, we are experimenting with no snapshot updates by default. [1] http://svn.apache.org/viewvc/maven/pom/trunk/asf/pom.xml?view=markup --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <prerequisites> <maven>2.0.4</maven> </prerequisites> <groupId>org.glassfish</groupId> <artifactId>pom</artifactId> <packaging>pom</packaging> <version>8</version> <name>GlassFish Master POM</name> <url>http://glassfish.org/</url> <scm> <connection>scm:svn:https://svn.dev.java.net/svn/glassfish-svn/tags/master-pom-8</connection> <developerConnection>scm:svn:https://svn.dev.java.net/svn/glassfish-svn/tags/master-pom-8</developerConnection> </scm> <licenses> <license> <name>CDDL + GPLv2 with classpath exception</name> <url>https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <organization> <name>GlassFish Community</name> <url>https://glassfish.dev.java.net</url> </organization> <distributionManagement> <!-- our internal staging repository, to be pushed to http://download.java.net/maven/glassfish/ --> <repository> <uniqueVersion>false</uniqueVersion> <!-- the ID maps to ~/.m2/settings.xml, so don't change the ID --> <id>rator.sfbay</id> <url>dav:http://glassfish-maven-repository.sfbay/maven/repositories/glassfish/</url> </repository> </distributionManagement> <build> <!-- please be very conservative about what plugins to configure by default, as this POM will be used very widely. --> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> </extensions> </build> <properties> <!-- java.net user id. Used in SCM setting to access java.net. If your local id and java.net user id are diffrent, override this property in your ~/.m2/settings.xml --> <java.net.username>${user.name}</java.net.username> </properties> <repositories> <!-- first hits nexus repo for any artifact request, then falls to the next repo in the list / order --> <repository> <id>glassfish-repo-archive</id> <name>Nexus repository collection for Glassfish</name> <url>http://maven.glassfish.org/content/groups/glassfish</url> <snapshots> <updatePolicy>never</updatePolicy> </snapshots> </repository> </repositories> <pluginRepositories> <!-- first hits nexus repo for any artifact request, then falls to the next repo in the list / order --> <pluginRepository> <id>glassfish-repo-archive</id> <name>Nexus repository collection for Glassfish</name> <url>http://maven.glassfish.org/content/groups/glassfish</url> <snapshots> <updatePolicy>never</updatePolicy> </snapshots> </pluginRepository> </pluginRepositories> <profiles> <profile> <!-- At times, java.net is down or we just don't want to overload java.net. So, we have an internal nexus server which can be activated if one uses this profile. --> <id>internal-repo</id> <repositories> <repository> <!-- override remote GlassFish Nexus repo --> <id>glassfish-repo-archive</id> <name>Internal Nexus repository collection for Glassfish</name> <url>http://gf-maven.sfbay.sun.com:8081/nexus/content/groups/glassfish</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <!-- override remote GlassFish Nexus repo --> <id>glassfish-repo-archive</id> <name>Nexus repository collection for Glassfish</name> <url>http://gf-maven.sfbay.sun.com:8081/nexus/content/groups/glassfish</url> </pluginRepository> </pluginRepositories> </profile> <profile> <!-- There are times when nexus is down and we want to access the java.net maven repositories directly. In such cases, use this profile. --> <id>external-repo</id> <repositories> <repository> <!-- Need to use the same id as nexus repo defined in global scope, otherwise maven will unnecessarily spend a lot of time trying to contact nexus. --> <id>glassfish-repo-archive</id> <name>M2 repo for GlassFish project specific artifacts</name> <url>http://download.java.net/maven/glassfish/</url> <layout>default</layout> </repository> <repository> <id>repo2</id> <name>M2 Repo for java.net projects</name> <url>http://download.java.net/maven/2/</url> <layout>default</layout> </repository> <repository> <id>repo3</id> <name>M1 Repo for java.net projects</name> <url>http://download.java.net/maven/1/</url> <layout>legacy</layout> </repository> <repository> <id>repo4</id> <name>EclipseLink maven repo</name> <url>http://download.eclipse.org/rt/eclipselink/maven.repo/</url> <layout>default</layout> </repository> <repository> <id>repo5</id> <name>NetBeans maven repo</name> <url>http://deadlock.netbeans.org/maven2/</url> <layout>default</layout> </repository> <repository> <id>repo7</id> <name>JBoss M2 repository</name> <url>http://repository.jboss.org/maven2</url> <layout>default</layout> </repository> <repository> <id>repo8</id> <name>Yet another M1 repo in java.net (don't know how it is any different from the other one)</name> <url>http://download.java.net/javaee5/external/shared/</url> <layout>legacy</layout> </repository> </repositories> <pluginRepositories> <pluginRepository> <!-- Need to use the same id as nexus repo defined in global scope, otherwise maven will unnecessarily spend a lot of time trying to contact nexus. --> <id>glassfish-repo-archive</id> <name>M2 repo for GlassFish project specific artifacts</name> <url>http://download.java.net/maven/glassfish/</url> <layout>default</layout> </pluginRepository> <pluginRepository> <id>plugin-repo2</id> <name>M1 Repo for java.net projects</name> <url>http://download.java.net/maven/2/</url> <layout>default</layout> </pluginRepository> </pluginRepositories> </profile> </profiles> </project>
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor