|
44 | 44 | <dependency> |
45 | 45 | <groupId>io.wcm</groupId> |
46 | 46 | <artifactId>io.wcm.caconfig.editor.package</artifactId> |
47 | | - <version>1.0.0</version> |
| 47 | + <version>1.12.0</version> |
48 | 48 | <type>zip</type> |
49 | 49 | </dependency> |
50 | 50 |
|
51 | 51 | <!-- ACS AEM Commons --> |
52 | 52 | <dependency> |
53 | 53 | <groupId>com.adobe.acs</groupId> |
54 | 54 | <artifactId>acs-aem-commons-ui.apps</artifactId> |
55 | | - <classifier>min</classifier> |
56 | | - <version>5.0.10</version> |
| 55 | + <version>5.3.0</version> |
57 | 56 | <type>zip</type> |
58 | 57 | <scope>compile</scope> |
59 | 58 | </dependency> |
60 | 59 | <dependency> |
61 | 60 | <groupId>com.adobe.acs</groupId> |
62 | 61 | <artifactId>acs-aem-commons-ui.content</artifactId> |
63 | | - <classifier>min</classifier> |
64 | | - <version>5.0.10</version> |
| 62 | + <version>5.3.0</version> |
65 | 63 | <type>zip</type> |
66 | 64 | <scope>compile</scope> |
67 | 65 | </dependency> |
|
97 | 95 | </configuration> |
98 | 96 | </plugin> |
99 | 97 |
|
100 | | - <!-- do not deploy this example into maven repository --> |
101 | 98 | <plugin> |
102 | | - <groupId>org.apache.maven.plugins</groupId> |
103 | | - <artifactId>maven-deploy-plugin</artifactId> |
104 | | - <inherited>false</inherited> |
105 | | - <configuration> |
106 | | - <skip>true</skip> |
107 | | - </configuration> |
108 | | - </plugin> |
109 | | - |
110 | | - <!-- do not generate site for this project --> |
111 | | - <plugin> |
112 | | - <groupId>org.apache.maven.plugins</groupId> |
113 | | - <artifactId>maven-site-plugin</artifactId> |
114 | | - <configuration> |
115 | | - <skip>true</skip> |
116 | | - <skipDeploy>true</skipDeploy> |
117 | | - </configuration> |
| 99 | + <groupId>io.wcm.devops.conga.plugins</groupId> |
| 100 | + <artifactId>conga-aem-maven-plugin</artifactId> |
| 101 | + <version>@project.version@</version> |
| 102 | + <executions> |
| 103 | + |
| 104 | + <!-- Generate variants of "all" packages (for testing purposes) --> |
| 105 | + <execution> |
| 106 | + <id>all-default</id> |
| 107 | + <phase>generate-resources</phase> |
| 108 | + <goals> |
| 109 | + <goal>cloudmanager-all-package</goal> |
| 110 | + </goals> |
| 111 | + <configuration> |
| 112 | + <group>it</group> |
| 113 | + <packageTypeValidation>WARN</packageTypeValidation> |
| 114 | + <target>${project.build.directory}/all/default</target> |
| 115 | + </configuration> |
| 116 | + </execution> |
| 117 | + <execution> |
| 118 | + <id>all-runmode-optimization</id> |
| 119 | + <phase>generate-resources</phase> |
| 120 | + <goals> |
| 121 | + <goal>cloudmanager-all-package</goal> |
| 122 | + </goals> |
| 123 | + <configuration> |
| 124 | + <group>it</group> |
| 125 | + <runModeOptimization>ELIMINATE_DUPLICATES</runModeOptimization> |
| 126 | + <packageTypeValidation>WARN</packageTypeValidation> |
| 127 | + <target>${project.build.directory}/all/runmode-optimization</target> |
| 128 | + </configuration> |
| 129 | + </execution> |
| 130 | + <execution> |
| 131 | + <id>all-single</id> |
| 132 | + <phase>generate-resources</phase> |
| 133 | + <goals> |
| 134 | + <goal>cloudmanager-all-package</goal> |
| 135 | + </goals> |
| 136 | + <configuration> |
| 137 | + <group>it</group> |
| 138 | + <singlePackage>true</singlePackage> |
| 139 | + <runModeOptimization>ELIMINATE_DUPLICATES</runModeOptimization> |
| 140 | + <packageTypeValidation>WARN</packageTypeValidation> |
| 141 | + <target>${project.build.directory}/all/single</target> |
| 142 | + </configuration> |
| 143 | + </execution> |
| 144 | + |
| 145 | + </executions> |
118 | 146 | </plugin> |
119 | 147 |
|
120 | 148 | </plugins> |
|
0 commit comments