Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
arjantijms | 3cfb3a3 | 2020-02-18 23:13:47 +0100 | [diff] [blame] | 4 | Copyright (c) 2010, 2020 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" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <groupId>org.glassfish.tests.embedded.basic</groupId> |
| 24 | <artifactId>scatteredarchive</artifactId> |
arjantijms | 3cfb3a3 | 2020-02-18 23:13:47 +0100 | [diff] [blame] | 25 | <version>6.0.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 26 | <name>Scattered Archive Test</name> |
| 27 | <build> |
| 28 | <finalName>scatteredarchive</finalName> |
| 29 | <plugins> |
| 30 | <plugin> |
| 31 | <groupId>org.apache.maven.plugins</groupId> |
| 32 | <artifactId>maven-compiler-plugin</artifactId> |
| 33 | <version>3.6.1</version> |
| 34 | <configuration> |
| 35 | <source>1.6</source> |
| 36 | <target>1.6</target> |
| 37 | </configuration> |
| 38 | </plugin> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-surefire-plugin</artifactId> |
| 42 | <version>2.4.2</version> |
| 43 | <configuration> |
arjantijms | 4c744d4 | 2020-03-04 12:32:21 +0100 | [diff] [blame] | 44 | <forkCount>1</forkCount> |
| 45 | <reuseForks>false</reuseForks> |
| 46 | <useSystemClassLoader>false</useSystemClassLoader> |
| 47 | <useManifestOnlyJar>false</useManifestOnlyJar> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 48 | </configuration> |
| 49 | </plugin> |
| 50 | </plugins> |
| 51 | </build> |
| 52 | <profiles> |
| 53 | <profile> |
| 54 | <id>run-with-uber-jar</id> |
| 55 | <activation> |
| 56 | <activeByDefault>true</activeByDefault> |
| 57 | </activation> |
| 58 | <dependencies> |
| 59 | <dependency> |
| 60 | <groupId>org.glassfish.main.extras</groupId> |
| 61 | <artifactId>glassfish-embedded-all</artifactId> |
arjantijms | 3cfb3a3 | 2020-02-18 23:13:47 +0100 | [diff] [blame] | 62 | <version>6.0.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 63 | </dependency> |
| 64 | </dependencies> |
| 65 | </profile> |
| 66 | <profile> |
| 67 | <id>run-with-shell-jar</id> |
| 68 | <activation> |
| 69 | <property> |
| 70 | <name>build</name> |
| 71 | <value>static-shell</value> |
| 72 | </property> |
| 73 | </activation> |
| 74 | <dependencies> |
| 75 | <dependency> |
| 76 | <groupId>org.glassfish.extras</groupId> |
| 77 | <artifactId>glassfish-embedded-static-shell</artifactId> |
| 78 | <version>${project.version}</version> |
| 79 | <scope>system</scope> |
| 80 | <systemPath>${env.S1AS_HOME}/lib/embedded/glassfish-embedded-static-shell.jar |
| 81 | </systemPath> |
| 82 | </dependency> |
| 83 | </dependencies> |
| 84 | </profile> |
| 85 | </profiles> |
| 86 | <dependencies> |
| 87 | <dependency> |
| 88 | <groupId>junit</groupId> |
| 89 | <artifactId>junit</artifactId> |
| 90 | <version>4.12</version> |
| 91 | </dependency> |
| 92 | </dependencies> |
| 93 | </project> |