io.wcm.devops.conga.plugins.sling
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.wcm.devops.conga.plugins</groupId> <artifactId>io.wcm.devops.conga.plugins.sling</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- #%L wcm.io %% Copyright (C) 2015 wcm.io %% Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #L% --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.wcm.devops.conga</groupId> <artifactId>io.wcm.devops.conga.parent</artifactId> <version>1.0.0</version> <relativePath /> </parent> <groupId>io.wcm.devops.conga.plugins</groupId> <artifactId>io.wcm.devops.conga.plugins.sling</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>CONGA Sling Plugin</name> <description>wcm.io DevOps CONfiguration GenerAtor Plugin for Apache Sling.</description> <scm> <connection>scm:git:https://github.com/wcm-io-devops/wcm-io-devops-conga-sling-plugin.git</connection> <developerConnection>scm:git:https://github.com/wcm-io-devops/wcm-io-devops-conga-sling-plugin.git</developerConnection> <url>https://github.com/wcm-io-devops/wcm-io-devops-conga-sling-plugin</url> <tag>HEAD</tag> </scm> <dependencies> <dependency> <groupId>io.wcm.devops.conga</groupId> <artifactId>io.wcm.devops.conga.generator</artifactId> <version>1.0.0</version> <scope>compile</scope> </dependency> <!-- Place this dependency always before the provisiong.model because this includes ConfigurationHandler as well --> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.configadmin</artifactId> <!-- Not use version 1.8.6 or above because arrays with multiple lines are not supported by older configadmin versions --> <version>1.8.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.provisioning.model</artifactId> <version>1.2.0</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <addVersionToProjectName>false</addVersionToProjectName> </configuration> </plugin> </plugins> </build> </project>