blob: c698a8603c176c58fc81430d199d7df5101c02ce [file] [log] [blame]
arjantijms40d0c142020-02-24 17:18:11 +01001<?xml version="1.0" encoding="UTF-8"?>
Vinay Vishal57171472018-09-18 20:22:00 +05302<!--
3
hussainnm53712522021-02-18 19:46:31 +05304 Copyright (c) 2010, 2021 Oracle and/or its affiliates. All rights reserved.
Vinay Vishal57171472018-09-18 20:22:00 +05305
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
arjantijms40d0c142020-02-24 17:18:11 +010020<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 Vishal57171472018-09-18 20:22:00 +053021 <modelVersion>4.0.0</modelVersion>
arjantijms40d0c142020-02-24 17:18:11 +010022
Vinay Vishal57171472018-09-18 20:22:00 +053023 <parent>
24 <groupId>org.glassfish.main.appclient</groupId>
25 <artifactId>client</artifactId>
Eclipse Glassfish Bot0eb5dc02021-08-26 23:54:16 +000026 <version>6.2.2-SNAPSHOT</version>
Vinay Vishal57171472018-09-18 20:22:00 +053027 </parent>
28
29 <artifactId>appclient-scripts</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +053030 <!--
David Matějčekf4dc06a2021-05-17 12:10:57 +020031 The comments below were copied from the ejb-timer-databases module.
Vinay Vishal57171472018-09-18 20:22:00 +053032 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 Vishal57171472018-09-18 20:22:00 +053055 <packaging>distribution-fragment</packaging>
56
arjantijms40d0c142020-02-24 17:18:11 +010057 <name>GlassFish appclient scripts</name>
58 <!--
Vinay Vishal57171472018-09-18 20:22:00 +053059
60 <packaging>pom</packaging>
David Matějčekf4dc06a2021-05-17 12:10:57 +020061-->
Vinay Vishal57171472018-09-18 20:22:00 +053062 <!--
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 Vishal57171472018-09-18 20:22:00 +053072</project>