| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved. |
| |
| This program and the accompanying materials are made available under the |
| terms of the Eclipse Public License v. 2.0, which is available at |
| http://www.eclipse.org/legal/epl-2.0. |
| |
| This Source Code may also be made available under the following Secondary |
| Licenses when the conditions for such availability set forth in the |
| Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| version 2 with the GNU Classpath Exception, which is available at |
| https://www.gnu.org/software/classpath/license.html. |
| |
| SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| |
| --> |
| |
| <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> |
| <groupId>org.glassfish.web</groupId> |
| <artifactId>el</artifactId> |
| <version>2.2.1-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <name>Expression Language related modules</name> |
| |
| <properties> |
| <findbugs.version>2.3.1</findbugs.version> |
| <findbugs.exclude /> |
| <findbugs.threshold>High</findbugs.threshold> |
| </properties> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <source>1.5</source> |
| <target>1.5</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| <version> 2.1 </version> |
| <configuration> |
| <includePom>true</includePom> |
| </configuration> |
| <executions> |
| <execution> |
| <id>attach-sources</id> |
| <goals> |
| <goal>jar-no-fork</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>attach-javadocs</id> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>findbugs-maven-plugin</artifactId> |
| <version>${findbugs.version}</version> |
| <configuration> |
| <threshold>${findbugs.threshold}</threshold> |
| <excludeFilterFile>${findbugs.exclude}</excludeFilterFile> |
| <findbugsXmlOutput>true</findbugsXmlOutput> |
| <findbugsXmlWithMessages>true</findbugsXmlWithMessages> |
| </configuration> |
| </plugin> |
| </plugins> |
| <extensions> |
| <extension> |
| <groupId>org.jvnet.wagon-svn</groupId> |
| <artifactId>wagon-svn</artifactId> |
| <version>1.12</version> |
| </extension> |
| <extension> |
| <groupId>org.apache.maven.wagon</groupId> |
| <artifactId>wagon-webdav</artifactId> |
| <version>1.0-beta-2</version> |
| </extension> |
| </extensions> |
| </build> |
| |
| <reporting> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>findbugs-maven-plugin</artifactId> |
| <version>2.1</version> |
| <configuration> |
| <threshold>High</threshold> |
| <excludeFilterFile>${findbugs.exclude}</excludeFilterFile> |
| </configuration> |
| </plugin> |
| </plugins> |
| </reporting> |
| |
| <scm> |
| <connection>scm:svn:svn+ssh://janey@svn.java.net/uel~svn/trunk</connection> |
| <developerConnection>scm:svn:svn+ssh://janey@svn.java.net/uel~svn/trunk</developerConnection> |
| <url>svn+ssh://janey@svn.java.net/uel~svn/trunk/</url> |
| </scm> |
| |
| <repositories> |
| <repository> |
| <id>glassfish-repository</id> |
| <url>http://download.java.net/maven/glassfish</url> |
| </repository> |
| <repository> |
| <id>maven2-repository.dev.java.net</id> |
| <name>Java.net Repository for Maven</name> |
| <url>http://download.java.net/maven/2</url> |
| </repository> |
| </repositories> |
| <pluginRepositories> |
| <pluginRepository> |
| <id>glassfish-repository</id> |
| <name>Java.net Repository for Maven 2</name> |
| <url>http://download.java.net/maven/glassfish</url> |
| <snapshots> |
| <updatePolicy>never</updatePolicy> |
| </snapshots> |
| </pluginRepository> |
| </pluginRepositories> |
| <distributionManagement> |
| <site> |
| <id>java.net-el</id> |
| <url>java-net:/uel~svn/trunk/repo/</url> |
| </site> |
| <repository> |
| <uniqueVersion>false</uniqueVersion> |
| <id>java.net-maven2-repository</id> |
| <url>java-net:/maven2-repository~svn/trunk/repository/</url> |
| </repository> |
| </distributionManagement> |
| </project> |
| |