|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + #%L |
| 4 | + wcm.io |
| 5 | + %% |
| 6 | + Copyright (C) 2022 wcm.io |
| 7 | + %% |
| 8 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | + you may not use this file except in compliance with the License. |
| 10 | + You may obtain a copy of the License at |
| 11 | +
|
| 12 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | +
|
| 14 | + Unless required by applicable law or agreed to in writing, software |
| 15 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | + See the License for the specific language governing permissions and |
| 18 | + limitations under the License. |
| 19 | + #L% |
| 20 | + --> |
| 21 | + |
| 22 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | + <modelVersion>4.0.0</modelVersion> |
| 25 | + |
| 26 | + <parent> |
| 27 | + <groupId>io.wcm.maven</groupId> |
| 28 | + <artifactId>io.wcm.maven.global-parent</artifactId> |
| 29 | + <version>36</version> |
| 30 | + <relativePath/> |
| 31 | + </parent> |
| 32 | + |
| 33 | + <groupId>io.wcm.devops.conga.plugins.aem.it</groupId> |
| 34 | + <artifactId>io.wcm.devops.conga.plugins.aem.it.mixed-no-package-type</artifactId> |
| 35 | + <packaging>config</packaging> |
| 36 | + <version>1-SNAPSHOT</version> |
| 37 | + |
| 38 | + <name>Mixed/No Package Type</name> |
| 39 | + <description>Test case with packages with "mixed" package types, and packages without package type and "all" package.</description> |
| 40 | + |
| 41 | + <dependencies> |
| 42 | + |
| 43 | + <!-- ACS AEM Commons --> |
| 44 | + <dependency> |
| 45 | + <groupId>com.adobe.acs</groupId> |
| 46 | + <artifactId>acs-aem-commons-ui.apps</artifactId> |
| 47 | + <classifier>min</classifier> |
| 48 | + <version>5.0.10</version> |
| 49 | + <type>zip</type> |
| 50 | + <scope>compile</scope> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>com.adobe.acs</groupId> |
| 54 | + <artifactId>acs-aem-commons-ui.content</artifactId> |
| 55 | + <classifier>min</classifier> |
| 56 | + <version>5.0.10</version> |
| 57 | + <type>zip</type> |
| 58 | + <scope>compile</scope> |
| 59 | + </dependency> |
| 60 | + |
| 61 | + </dependencies> |
| 62 | + |
| 63 | + <build> |
| 64 | + |
| 65 | + <plugins> |
| 66 | + |
| 67 | + <plugin> |
| 68 | + <groupId>io.wcm.devops.conga</groupId> |
| 69 | + <artifactId>conga-maven-plugin</artifactId> |
| 70 | + <version>1.14.7-SNAPSHOT</version> |
| 71 | + <extensions>true</extensions> |
| 72 | + <dependencies> |
| 73 | + |
| 74 | + <!-- Activate further CONGA plugins for special file types --> |
| 75 | + <dependency> |
| 76 | + <groupId>io.wcm.devops.conga.plugins</groupId> |
| 77 | + <artifactId>io.wcm.devops.conga.plugins.aem</artifactId> |
| 78 | + <version>@project.version@</version> |
| 79 | + </dependency> |
| 80 | + |
| 81 | + </dependencies> |
| 82 | + </plugin> |
| 83 | + |
| 84 | + <plugin> |
| 85 | + <groupId>io.wcm.devops.conga.plugins</groupId> |
| 86 | + <artifactId>conga-aem-maven-plugin</artifactId> |
| 87 | + <version>@project.version@</version> |
| 88 | + <executions> |
| 89 | + |
| 90 | + <!-- Generate "all" packages including all packages from CONGA configuration for deployment via Adobe Cloud Manager --> |
| 91 | + <execution> |
| 92 | + <id>cloudmanager-all-package</id> |
| 93 | + <phase>generate-resources</phase> |
| 94 | + <goals> |
| 95 | + <goal>cloudmanager-all-package</goal> |
| 96 | + </goals> |
| 97 | + <configuration> |
| 98 | + <group>it</group> |
| 99 | + <!-- Allow packages with mixed mode and without package type --> |
| 100 | + <packageTypeValidation>WARN</packageTypeValidation> |
| 101 | + </configuration> |
| 102 | + </execution> |
| 103 | + |
| 104 | + </executions> |
| 105 | + </plugin> |
| 106 | + |
| 107 | + <!-- do not deploy this example into maven repository --> |
| 108 | + <plugin> |
| 109 | + <groupId>org.apache.maven.plugins</groupId> |
| 110 | + <artifactId>maven-deploy-plugin</artifactId> |
| 111 | + <inherited>false</inherited> |
| 112 | + <configuration> |
| 113 | + <skip>true</skip> |
| 114 | + </configuration> |
| 115 | + </plugin> |
| 116 | + |
| 117 | + <!-- do not generate site for this project --> |
| 118 | + <plugin> |
| 119 | + <groupId>org.apache.maven.plugins</groupId> |
| 120 | + <artifactId>maven-site-plugin</artifactId> |
| 121 | + <configuration> |
| 122 | + <skip>true</skip> |
| 123 | + <skipDeploy>true</skipDeploy> |
| 124 | + </configuration> |
| 125 | + </plugin> |
| 126 | + |
| 127 | + </plugins> |
| 128 | + </build> |
| 129 | + |
| 130 | +</project> |
0 commit comments