|
5 | 5 | <parent>
|
6 | 6 | <groupId>de.valtech.aecu</groupId>
|
7 | 7 | <artifactId>aecu</artifactId>
|
8 |
| - <version>6.1.0</version> |
| 8 | + <version>6.2.0</version> |
9 | 9 | </parent>
|
10 | 10 |
|
11 | 11 | <artifactId>aecu.complete.cloud</artifactId>
|
|
24 | 24 | <configuration>
|
25 | 25 | <allowIndexDefinitions>true</allowIndexDefinitions>
|
26 | 26 | <embeddedTarget>/apps/valtech/aecu-complete/install/</embeddedTarget>
|
27 |
| - <verbose>true</verbose> |
28 |
| - <failOnError>true</failOnError> |
29 | 27 | <group>Valtech</group>
|
30 | 28 | <packageType>container</packageType>
|
31 | 29 | <skipSubPackageValidation>true</skipSubPackageValidation>
|
|
51 | 49 | <target>/apps/valtech/aecu-complete/install/27</target>
|
52 | 50 | </embedded>
|
53 | 51 | <embedded>
|
54 |
| - <groupId>com.icfolson.aem.groovy.console</groupId> |
55 |
| - <artifactId>aem-groovy-console</artifactId> |
56 |
| - <type>jar</type> |
57 |
| - </embedded> |
58 |
| - <embedded> |
59 |
| - <groupId>org.codehaus.groovy</groupId> |
60 |
| - <artifactId>groovy-all</artifactId> |
61 |
| - </embedded> |
62 |
| - <embedded> |
63 |
| - <groupId>com.icfolson.aem.groovy.extension</groupId> |
64 |
| - <artifactId>aem-groovy-extension-bundle</artifactId> |
| 52 | + <groupId>be.orbinson.aem</groupId> |
| 53 | + <artifactId>aem-groovy-console-all</artifactId> |
| 54 | + <type>zip</type> |
| 55 | + <filter>true</filter> |
65 | 56 | </embedded>
|
66 | 57 | <embedded>
|
67 | 58 | <groupId>de.valtech.aecu</groupId>
|
68 | 59 | <artifactId>aecu.ui.apps</artifactId>
|
69 | 60 | </embedded>
|
70 |
| - <embedded> |
71 |
| - <groupId>de.valtech.aecu</groupId> |
72 |
| - <artifactId>aecu.ui.apps.groovyconsole</artifactId> |
73 |
| - </embedded> |
74 | 61 | <embedded>
|
75 | 62 | <groupId>de.valtech.aecu</groupId>
|
76 | 63 | <artifactId>aecu.ui.content</artifactId>
|
|
92 | 79 |
|
93 | 80 | <dependencies>
|
94 | 81 | <dependency>
|
95 |
| - <groupId>com.icfolson.aem.groovy.console</groupId> |
96 |
| - <artifactId>aem-groovy-console</artifactId> |
97 |
| - </dependency> |
98 |
| - <dependency> |
99 |
| - <groupId>com.icfolson.aem.groovy.console</groupId> |
100 |
| - <artifactId>aem-groovy-console</artifactId> |
| 82 | + <groupId>be.orbinson.aem</groupId> |
| 83 | + <artifactId>aem-groovy-console-all</artifactId> |
101 | 84 | <type>zip</type>
|
102 | 85 | </dependency>
|
103 |
| - <dependency> |
104 |
| - <groupId>org.codehaus.groovy</groupId> |
105 |
| - <artifactId>groovy-all</artifactId> |
106 |
| - </dependency> |
107 |
| - <dependency> |
108 |
| - <groupId>com.icfolson.aem.groovy.extension</groupId> |
109 |
| - <artifactId>aem-groovy-extension-bundle</artifactId> |
110 |
| - </dependency> |
111 | 86 | <dependency>
|
112 | 87 | <groupId>de.valtech.aecu</groupId>
|
113 | 88 | <artifactId>aecu.ui.apps</artifactId>
|
114 | 89 | <version>${project.version}</version>
|
115 | 90 | <type>zip</type>
|
116 | 91 | </dependency>
|
117 |
| - <dependency> |
118 |
| - <groupId>de.valtech.aecu</groupId> |
119 |
| - <artifactId>aecu.ui.apps.groovyconsole</artifactId> |
120 |
| - <version>${project.version}</version> |
121 |
| - <type>zip</type> |
122 |
| - </dependency> |
123 | 92 | <dependency>
|
124 | 93 | <groupId>de.valtech.aecu</groupId>
|
125 | 94 | <artifactId>aecu.ui.content</artifactId>
|
|
148 | 117 | <version>${project.version}</version>
|
149 | 118 | </dependency>
|
150 | 119 | </dependencies>
|
| 120 | + |
| 121 | + <profiles> |
| 122 | + |
| 123 | + <profile> |
| 124 | + <id>autoInstallPackageCloud</id> |
| 125 | + <activation> |
| 126 | + <activeByDefault>false</activeByDefault> |
| 127 | + </activation> |
| 128 | + <build> |
| 129 | + <pluginManagement> |
| 130 | + <plugins> |
| 131 | + <plugin> |
| 132 | + <groupId>com.day.jcr.vault</groupId> |
| 133 | + <artifactId>content-package-maven-plugin</artifactId> |
| 134 | + <executions> |
| 135 | + <execution> |
| 136 | + <id>install-package</id> |
| 137 | + <goals> |
| 138 | + <goal>install</goal> |
| 139 | + </goals> |
| 140 | + <configuration> |
| 141 | + <targetURL>http://${aem.host}:${aem.port}/crx/packmgr/service.jsp</targetURL> |
| 142 | + </configuration> |
| 143 | + </execution> |
| 144 | + </executions> |
| 145 | + </plugin> |
| 146 | + </plugins> |
| 147 | + </pluginManagement> |
| 148 | + </build> |
| 149 | + </profile> |
| 150 | + |
| 151 | + <profile> |
| 152 | + <id>autoInstallPackagePublishCloud</id> |
| 153 | + <activation> |
| 154 | + <activeByDefault>false</activeByDefault> |
| 155 | + </activation> |
| 156 | + <build> |
| 157 | + <pluginManagement> |
| 158 | + <plugins> |
| 159 | + <plugin> |
| 160 | + <groupId>com.day.jcr.vault</groupId> |
| 161 | + <artifactId>content-package-maven-plugin</artifactId> |
| 162 | + <executions> |
| 163 | + <execution> |
| 164 | + <id>install-package-publish</id> |
| 165 | + <goals> |
| 166 | + <goal>install</goal> |
| 167 | + </goals> |
| 168 | + <configuration> |
| 169 | + <targetURL>http://${aem.publish.host}:${aem.publish.port}/crx/packmgr/service.jsp |
| 170 | + </targetURL> |
| 171 | + </configuration> |
| 172 | + </execution> |
| 173 | + </executions> |
| 174 | + </plugin> |
| 175 | + </plugins> |
| 176 | + </pluginManagement> |
| 177 | + </build> |
| 178 | + </profile> |
| 179 | + |
| 180 | + </profiles> |
| 181 | + |
| 182 | + |
151 | 183 | </project>
|
0 commit comments