slice-aem60-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.cognifide.slice-addon</groupId> <artifactId>slice-aem60-parent</artifactId> <version>1.2.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"> <modelVersion>4.0.0</modelVersion> <groupId>com.cognifide.slice-addon</groupId> <artifactId>slice-aem60-parent</artifactId> <version>1.2.0</version> <name>Slice - AEM 6.0 Parent</name> <url>http://cognifide.com/</url> <description>AEM 6.0 add-on for Slice framework</description> <packaging>pom</packaging> <inceptionYear>2014</inceptionYear> <organization> <name>Cognifide Limited</name> <url>http://www.cognifide.com</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <modules> <module>slice-aem60</module> <module>slice-aem60-assembly</module> </modules> <properties> <file.encoding>UTF-8</file.encoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compile.source>1.6</maven.compile.source> <maven.compile.target>1.6</maven.compile.target> <maven.compiler.version>1.6</maven.compiler.version> <maven.compiler.encoding>UTF-8</maven.compiler.encoding> <slice.version>4.3.0</slice.version> <maven.test.skip>false</maven.test.skip> <site.root>.\src\main\resources</site.root> <sling.install.skip>true</sling.install.skip> <assembly.descriptor.file>aem.xml</assembly.descriptor.file> <assembly.path>${project.build.directory}/${project.build.finalName}-aem.zip</assembly.path> <crx.package.name>${project.artifactId}</crx.package.name> <cq.package.name>slice</cq.package.name> <slice.instance.url>http://localhost:5402</slice.instance.url> <slice.crx.username>admin</slice.crx.username> <slice.crx.password>admin</slice.crx.password> </properties> <scm> <connection>scm:git:https://github.com/Cognifide/Slice-AEM60.git</connection> <url>scm:git:https://github.com/Cognifide/Slice-AEM60.git</url> <developerConnection>scm:git|https://github.com/Cognifide/Slice-AEM60.git</developerConnection> <tag>slice-aem60-parent-1.2.0</tag> </scm> <developers> <developer> <id>maciej.majchrzak</id> <name>Maciej Majchrzak</name> <email>maciej.majchrzak@cognifide.com</email> </developer> </developers> <!-- //////////////////////////////////////////////////////////////////////// // build ////////////////////////////////////////////////////////////////////// --> <build> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>1.0.1</version> <executions> <execution> <id>enforce-property</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireProperty> <property>crx.username</property> <message>Using default crx.username = admin</message> </requireProperty> <requireProperty> <property>crx.password</property> <message>Using default crx.password = admin</message> </requireProperty> <requireProperty> <property>cq.url</property> <message>Using default cq.url = http://localhost:4502</message> </requireProperty> </rules> <fail>false</fail> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <fork>false</fork> <source>${maven.compile.source}</source> <target>${maven.compile.target}</target> <compilerVersion>${maven.compiler.version}</compilerVersion> <encoding>${maven.compiler.encoding}</encoding> </configuration> </plugin> <plugin> <!-- skipping the assembly in root pom (but not in children) --> <artifactId>maven-assembly-plugin</artifactId> <inherited>false</inherited> <configuration> <skipAssembly>true</skipAssembly> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.8</version> <configuration> <downloadSources>true</downloadSources> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <username>${scm.username}</username> <password>${scm.password}</password> <preparationGoals>clean install</preparationGoals> <useReleaseProfile>false</useReleaseProfile> <arguments>-Psonatype-oss-release</arguments> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.1</version> <configuration> <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> <descriptors> <descriptor>src/main/assembly/${assembly.descriptor.file}</descriptor> </descriptors> </configuration> <executions> <execution> <id>aem</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>maven-sling-plugin</artifactId> <version>2.0.4-incubator</version> <configuration> <bundleFileName>${project.build.directory}/${project.build.finalName}.jar</bundleFileName> <user>${slice.crx.username}</user> <password>${slice.crx.password}</password> <usePut>true</usePut> <slingUrl>${slice.sling.url}</slingUrl> </configuration> <executions> <execution> <id>uninstall-bundle</id> <goals> <goal>uninstall</goal> </goals> </execution> <execution> <id>install-bundle</id> <goals> <goal>install</goal> </goals> </execution> </executions> </plugin> <!-- Felix OSGi descriptor parser --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> <version>1.7.4</version> <executions> <execution> <id>generate-scr-scrdescriptor</id> <goals> <goal>scr</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.0.1</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Bundle-Name>${project.name}</Bundle-Name> <Bundle-Vendor>Cognifide Ltd.</Bundle-Vendor> </instructions> </configuration> </plugin> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> org.apache.felix </groupId> <artifactId> maven-scr-plugin </artifactId> <versionRange> [1.7.4,) </versionRange> <goals> <goal>scr</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> <plugin> <groupId>com.cognifide.maven.plugins</groupId> <artifactId>maven-crx-plugin</artifactId> <version>1.0.3</version> <configuration> <runOnlyAtExecutionRoot>${maven-crx-plugin.runOnlyAtExecutionRoot}</runOnlyAtExecutionRoot> <skip>true</skip> <packageFileName>${assembly.path}</packageFileName> <packageName>${project.artifactId}</packageName> <url>${instance.url}</url> <user>${instance.username}</user> <password>${instance.password}</password> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencyManagement> <dependencies> <!-- Slice --> <dependency> <groupId>com.cognifide.slice</groupId> <artifactId>slice-api</artifactId> <version>${slice.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.cognifide.slice</groupId> <artifactId>slice-core</artifactId> <version>${slice.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.cognifide.slice</groupId> <artifactId>slice-core-api</artifactId> <version>${slice.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.cognifide.slice</groupId> <artifactId>slice-mapper-api</artifactId> <version>${slice.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.cognifide.slice</groupId> <artifactId>slice-mapper</artifactId> <version>${slice.version}</version> <scope>provided</scope> </dependency> <!-- Guice --> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>3.0</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </exclusion> <exclusion> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.ops4j</groupId> <artifactId>peaberry</artifactId> <version>1.1.1</version> <scope>provided</scope> </dependency> <!-- Guice's dependency (provided by Spring repository) --> <dependency> <groupId>org.aopalliance</groupId> <artifactId>com.springsource.org.aopalliance</artifactId> <version>1.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>com.springsource.javax.inject</artifactId> <version>1.0.0</version> <scope>provided</scope> </dependency> <!-- OSGi --> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>4.2.0</version> <scope>provided</scope> </dependency> <!-- javax --> <dependency> <groupId>javax.jcr</groupId> <artifactId>jcr</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> </dependency> <!-- Apache felix scr --> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.scr</artifactId> <version>1.6.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.scr.annotations</artifactId> <version>1.6.0</version> <scope>provided</scope> </dependency> <!-- Apache Commons --> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <!-- Adobe AEM 6 --> <dependency> <groupId>com.adobe.aem</groupId> <artifactId>aem-api</artifactId> <version>6.0.0.1</version> <scope>provided</scope> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.4</version> <scope>provided</scope> </dependency> <!-- Test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.0</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <repositories> <repository> <id>adobe-public-releases</id> <name>Adobe Public Repository</name> <url>http://repo.adobe.com/nexus/content/groups/public</url> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>com.springsource.repository.bundles.external</id> <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name> <url>http://repository.springsource.com/maven/bundles/external/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>adobe-public-releases</id> <name>Adobe Public Repository</name> <url>http://repo.adobe.com/nexus/content/groups/public</url> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> <!-- //////////////////////////////////////////////////////////////////////// // reporting ////////////////////////////////////////////////////////////////////// --> <reporting> <plugins> <!-- javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.6.1</version> <configuration> <noindex>false</noindex> <show>publish</show> <nodeprecated>true</nodeprecated> </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>sonatype-oss-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>sling</id> <activation> <property> <name>sling</name> </property> </activation> <properties> <sling.install.skip>false</sling.install.skip> </properties> </profile> </profiles> </project>