aem-groovy-extension
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.icfolson.aem.groovy.extension</groupId> <artifactId>aem-groovy-extension</artifactId> <version>7.0.0</version> </dependency>
<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/maven-v4_0_0.xsd"> <parent> <groupId>com.icfolson.aem</groupId> <artifactId>aem-parent-uber-jar</artifactId> <version>7.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.icfolson.aem.groovy.extension</groupId> <artifactId>aem-groovy-extension</artifactId> <packaging>pom</packaging> <version>7.0.0</version> <name>AEM Groovy Extension</name> <description>OSGi bundle containing Groovy builders and metaclasses for Adobe Experience Manager.</description> <url>https://github.com/icfnext/aem-groovy-extension</url> <organization> <name>ICF Next</name> <url>http://www.icfnext.com</url> </organization> <issueManagement> <system>GitHub</system> <url>https://github.com/icfnext/aem-groovy-extension/issues</url> </issueManagement> <modules> <module>aem-groovy-extension-bundle</module> <module>aem-groovy-extension-tests</module> <module>aem-groovy-extension-package</module> </modules> <scm> <connection>scm:git:git@github.com:icfnext/aem-groovy-extension.git</connection> <url>https://github.com/icfnext/aem-groovy-extension</url> <developerConnection>scm:git:git@github.com:icfnext/aem-groovy-extension.git</developerConnection> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.junit.usefile>false</maven.junit.usefile> <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss.SSSZ</maven.build.timestamp.format> <timestamp>${maven.build.timestamp}</timestamp> <aem.package.skip>true</aem.package.skip> <aem.package.goal>install</aem.package.goal> <aem.username>admin</aem.username> <aem.context.path/> <osgi.bundle.status.skip.author>true</osgi.bundle.status.skip.author> <osgi.bundle.status.skip.publish>true</osgi.bundle.status.skip.publish> </properties> <profiles> <profile> <id>local</id> <activation> <property> <name>local</name> </property> </activation> <properties> <aem.package.skip>false</aem.package.skip> <aem.host>localhost</aem.host> <aem.port.author>4502</aem.port.author> <aem.port.publish>4503</aem.port.publish> <aem.username>admin</aem.username> <aem.password>admin</aem.password> <osgi.bundle.status.skip.author>false</osgi.bundle.status.skip.author> </properties> </profile> <profile> <id>replicate</id> <activation> <property> <name>replicate</name> </property> </activation> <properties> <aem.package.goal>replicate</aem.package.goal> <osgi.bundle.status.skip.publish>false</osgi.bundle.status.skip.publish> </properties> </profile> <profile> <id>github-site</id> <activation> <property> <name>github-site</name> </property> </activation> <build> <plugins> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.12</version> <configuration> <message>site for ${project.version}</message> <server>github</server> <merge>true</merge> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>site</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <compilerId>groovy-eclipse-compiler</compilerId> <source>1.8</source> <target>1.8</target> <encoding>utf-8</encoding> </configuration> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-compiler</artifactId> <version>2.9.2-01</version> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-batch</artifactId> <version>2.4.3-01</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.4</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.1</version> <configuration> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <dependencies> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-markdown</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>lt.velykis.maven.skins</groupId> <artifactId>reflow-velocity-tools</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <phase>deploy</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <executions> <execution> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> <reportSets> <reportSet> <reports> <report>summary</report> <report>license</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.18.1</version> <configuration> <aggregate>true</aggregate> </configuration> </plugin> </plugins> </reporting> <dependencyManagement> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.4.15</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>javax.jcr</groupId> <artifactId>jcr</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.cmpn</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.core</artifactId> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> </dependency> <dependency> <groupId>com.adobe.aem</groupId> <artifactId>uber-jar</artifactId> <classifier>apis</classifier> </dependency> </dependencies> </project>