Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
Jayasheelan Kumar | a6a684d | 2019-01-08 11:07:04 +0530 | [diff] [blame^] | 4 | Copyright (c) 1997, 2019 Oracle and/or its affiliates. All rights reserved. |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 5 | |
| 6 | This program and the accompanying materials are made available under the |
| 7 | terms of the Eclipse Public License v. 2.0, which is available at |
| 8 | http://www.eclipse.org/legal/epl-2.0. |
| 9 | |
| 10 | This Source Code may also be made available under the following Secondary |
| 11 | Licenses when the conditions for such availability set forth in the |
| 12 | Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| 13 | version 2 with the GNU Classpath Exception, which is available at |
| 14 | https://www.gnu.org/software/classpath/license.html. |
| 15 | |
| 16 | SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| 17 | |
| 18 | --> |
| 19 | |
| 20 | <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"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.glassfish.main.persistence.cmp</groupId> |
| 24 | <artifactId>cmp</artifactId> |
Jayasheelan Kumar | 56e520f | 2019-01-04 15:31:35 +0530 | [diff] [blame] | 25 | <version>5.1.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | <artifactId>cmp-enhancer</artifactId> |
| 29 | <packaging>glassfish-jar</packaging> |
| 30 | |
| 31 | <name>enhancer module for cmp</name> |
| 32 | |
| 33 | <developers> |
| 34 | <developer> |
| 35 | <id>mm110999</id> |
| 36 | <name>Mitesh Meswani</name> |
| 37 | <organization>Oracle, Inc.</organization> |
| 38 | <roles> |
| 39 | <role>developer</role> |
| 40 | <role>lead</role> |
| 41 | </roles> |
| 42 | </developer> |
| 43 | </developers> |
| 44 | |
| 45 | <build> |
| 46 | <resources> |
| 47 | <resource> |
| 48 | <directory>src/main/java</directory> |
| 49 | <includes> |
| 50 | <include>**/*.properties</include> |
| 51 | </includes> |
| 52 | </resource> |
| 53 | </resources> |
| 54 | </build> |
| 55 | |
| 56 | <dependencies> |
| 57 | <dependency> |
| 58 | <groupId>org.glassfish.main.persistence.cmp</groupId> |
| 59 | <artifactId>cmp-model</artifactId> |
| 60 | <version>${project.version}</version> |
| 61 | </dependency> |
| 62 | </dependencies> |
| 63 | |
| 64 | <!-- |
| 65 | Findbugs needs org.netbeans.external:ddl, |
| 66 | we isolate it in a profile as it requires a separate repository definition. |
| 67 | can be removed once GLASSFISH-20835 is resolved |
| 68 | --> |
| 69 | <profiles> |
| 70 | <profile> |
| 71 | <id>findbugs</id> |
| 72 | <repositories> |
| 73 | <repository> |
| 74 | <id>netbeans</id> |
| 75 | <releases> |
| 76 | <enabled>true</enabled> |
| 77 | </releases> |
| 78 | <snapshots> |
| 79 | <enabled>false</enabled> |
| 80 | </snapshots> |
| 81 | <url>http://bits.netbeans.org/maven2</url> |
| 82 | </repository> |
| 83 | </repositories> |
| 84 | <dependencies> |
| 85 | <dependency> |
| 86 | <groupId>org.netbeans.external</groupId> |
| 87 | <artifactId>ddl</artifactId> |
| 88 | </dependency> |
| 89 | </dependencies> |
| 90 | </profile> |
| 91 | </profiles> |
| 92 | </project> |