arjantijms | 40d0c14 | 2020-02-24 17:18:11 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 2 | <!-- |
| 3 | |
hussainnm | 5371252 | 2021-02-18 19:46:31 +0530 | [diff] [blame] | 4 | Copyright (c) 2010, 2021 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 | |
arjantijms | 40d0c14 | 2020-02-24 17:18:11 +0100 | [diff] [blame] | 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/xsd/maven-4.0.0.xsd"> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
arjantijms | 40d0c14 | 2020-02-24 17:18:11 +0100 | [diff] [blame] | 22 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 23 | <parent> |
| 24 | <groupId>org.glassfish.main.appclient</groupId> |
| 25 | <artifactId>client</artifactId> |
Eclipse Glassfish Bot | 0eb5dc0 | 2021-08-26 23:54:16 +0000 | [diff] [blame^] | 26 | <version>6.2.2-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>appclient-scripts</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 30 | <!-- |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame] | 31 | The comments below were copied from the ejb-timer-databases module. |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 32 | They are very helpful so it seemed like a good idea to leave them here also. |
| 33 | --> |
| 34 | <!-- |
| 35 | This packaging specifies that it's a package that contains files to be added to |
| 36 | the distribution. |
| 37 | |
| 38 | In this packaging mode, the build will produce a jar, like it normally does for |
| 39 | the <packaging>jar</packaging>, but the contents of this jar is then extracted |
| 40 | when the final GlassFish distribution is assembled. (But when this happens, |
| 41 | META-INF/** in the jar will be ignored.) |
| 42 | |
| 43 | For a fragment to be added to the distribution, the distribution POM needs |
| 44 | to directly or indirectly depend on the fragment module. This is normally |
| 45 | done by creating a feature-level grouping POM (which allows you to bundle multiple |
| 46 | modules and treat it as a single dependency - see the webtier-all module for example), |
| 47 | and have that declare a dependency on the fragment, instead of directly |
| 48 | modifying the distribution POM. |
| 49 | |
| 50 | So the idea here is that individual technology area will create their own |
| 51 | fragments that contain pieces that they need, and when the said technology |
| 52 | is bundled in GF, the corresponding fragment will be also added, thanks to |
| 53 | the transitive dependency handling in Maven. |
| 54 | --> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 55 | <packaging>distribution-fragment</packaging> |
| 56 | |
arjantijms | 40d0c14 | 2020-02-24 17:18:11 +0100 | [diff] [blame] | 57 | <name>GlassFish appclient scripts</name> |
| 58 | <!-- |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 59 | |
| 60 | <packaging>pom</packaging> |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame] | 61 | --> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 62 | <!-- |
| 63 | In this module, all the files are statically stored as-is in the Subversion repository, |
| 64 | so the simple copying from src/main/resources to target/classes that Maven does by default |
| 65 | is suffice. |
| 66 | |
| 67 | But in more complex scenario, one can use maven-antrun-extended-plugin and use a series of Ant tasks |
| 68 | to perform processing on resources, such as token replacement, file generation, pre-processing, etc. |
| 69 | |
| 70 | The following section shows how you can do this. |
| 71 | --> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 72 | </project> |