bedrock
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.citytechinc.aem.bedrock</groupId> <artifactId>bedrock</artifactId> <version>5.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.citytechinc.aem</groupId> <artifactId>parent</artifactId> <version>6.1.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.citytechinc.aem.bedrock</groupId> <artifactId>bedrock</artifactId> <packaging>pom</packaging> <version>5.0.0</version> <name>Bedrock</name> <description>Bedrock provides a sturdy foundation for bootstrapping and simplifying AEM (Adobe CQ) projects.</description> <organization> <name>CITYTECH, Inc.</name> <url>http://www.citytechinc.com</url> </organization> <issueManagement> <system>GitHub</system> <url>https://github.com/Citytechinc/bedrock/issues</url> </issueManagement> <url>http://code.citytechinc.com/bedrock</url> <modules> <module>bedrock-api</module> <module>bedrock-core</module> <module>bedrock-models</module> <module>bedrock-ui</module> </modules> <scm> <connection>scm:git:git@github.com:Citytechinc/bedrock.git</connection> <url>https://github.com/Citytechinc/bedrock</url> <developerConnection>scm:git:git@github.com:Citytechinc/bedrock.git</developerConnection> </scm> <repositories> <repository> <id>citytech-public</id> <url>http://nexus.citytech.ctmsp.com/content/groups/public</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>citytech-public</id> <url>http://nexus.citytech.ctmsp.com/content/groups/public</url> </pluginRepository> </pluginRepositories> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <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.username>admin</aem.username> </properties> <profiles> <!-- required for cobertura --> <profile> <id>standard-jdk</id> <activation> <file> <exists>${java.home}/../lib/tools.jar</exists> </file> </activation> <properties> <sun.tools.path>${java.home}/../lib/tools.jar</sun.tools.path> </properties> </profile> <profile> <id>apple-jdk</id> <activation> <file> <exists>${java.home}/../Classes/classes.jar</exists> </file> </activation> <properties> <sun.tools.path>${java.home}/../Classes/classes.jar</sun.tools.path> </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-compiler-plugin</artifactId> <version>3.5</version> <configuration> <compilerId>groovy-eclipse-compiler</compilerId> <source>1.8</source> <target>1.8</target> </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-resources-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.0.1</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> <version>1.21.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <includes> <include>**/*Spec*</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.19.1</version> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <version>3.4</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.7</version> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>1.6</version> <scope>system</scope> <systemPath>${sun.tools.path}</systemPath> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>xml-maven-plugin</artifactId> <version>1.0</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.4.0</version> </plugin> <plugin> <groupId>com.citytechinc.maven.plugins</groupId> <artifactId>cq-package-maven-plugin</artifactId> <version>0.3.0</version> </plugin> <plugin> <groupId>com.citytechinc.maven.plugins</groupId> <artifactId>osgi-bundle-status-maven-plugin</artifactId> <version>1.2.0</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.3</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>com.github.phasebash</groupId> <artifactId>jsdoc3-maven-plugin</artifactId> <version>1.0.7</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>external.atlassian.jgitflow</groupId> <artifactId>jgitflow-maven-plugin</artifactId> <version>1.0-m4.3</version> <configuration> <flowInitContext> <featureBranchPrefix>feature-</featureBranchPrefix> <releaseBranchPrefix>release-</releaseBranchPrefix> <hotfixBranchPrefix>hotfix-</hotfixBranchPrefix> </flowInitContext> <autoVersionSubmodules>true</autoVersionSubmodules> <noDeploy>true</noDeploy> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> </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.0.0</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <phase>deploy</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <phase>deploy</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <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> <reportSets> <reportSet> <reports> <report>summary</report> <report>license</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <excludePackageNames> *.impl, *.predicates, com.citytechinc.aem.bedrock.core.adapter.*, com.citytechinc.aem.bedrock.core.bindings.* </excludePackageNames> <links> <link>http://docs.oracle.com/javaee/6/api</link> <link>http://docs.guava-libraries.googlecode.com/git-history/release/javadoc</link> <link>http://www.day.com/maven/jsr170/javadocs/jcr-2.0</link> <link>http://sling.apache.org/apidocs/sling5</link> <link>http://dev.day.com/docs/en/cq/current/javadoc</link> <link>http://fasterxml.github.io/jackson-databind/javadoc/2.3.0</link> </links> <quiet>true</quiet> </configuration> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <configuration> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <configuration> <aggregate>true</aggregate> <rulesets> <ruleset>src/main/config/pmd.xml</ruleset> </rulesets> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <artifactId>maven-changes-plugin</artifactId> <version>2.11</version> <configuration> <includeOpenIssues>false</includeOpenIssues> </configuration> <reportSets> <reportSet> <reports> <report>github-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>com.github.phasebash</groupId> <artifactId>jsdoc3-maven-plugin</artifactId> <configuration> <recursive>true</recursive> <directoryRoots> <directoryRoot> ${basedir}/bedrock-ui/src/main/content/jcr_root/etc/clientlibs/bedrock/utilities </directoryRoot> <directoryRoot> ${basedir}/bedrock-ui/src/main/content/jcr_root/etc/clientlibs/bedrock/widgets </directoryRoot> </directoryRoots> </configuration> </plugin> </plugins> </reporting> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.models.api</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.models.impl</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.scr.annotations</artifactId> <version>1.9.12</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.5.2</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.5.2</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.5.2</version> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.4.3</version> </dependency> <dependency> <groupId>com.citytechinc.aem.groovy.extension</groupId> <artifactId>aem-groovy-extension-bundle</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <version>1.0-groovy-2.4</version> </dependency> <dependency> <groupId>com.citytechinc.aem.prosper</groupId> <artifactId>prosper</artifactId> <version>6.0.0</version> </dependency> <dependency> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> <version>2.1.1</version> <exclusions> <exclusion> <groupId>com.sun</groupId> <artifactId>tools</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </dependencyManagement> </project>