MVN

org.apache.sling : org.apache.sling.fragment.xml

Maven & Gradle

Feb 13, 2013
3 usages

Apache Sling System Bundle Extension: XML APIs · Adds the XML API packages to the system bundle exports. The list of packages is derived from the packages available in the Java 7 platform. The system bundle exporting these packages gives no guarantee the platform provides them. For proper setup it is suggested to either install an extension fragment adapted to the platform or to install regular API packages as bundles.

<dependency>
    <groupId>org.apache.sling</groupId>
    <artifactId>org.apache.sling.fragment.xml</artifactId>
    <version>1.0.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.sling : org.apache.sling.fragment.xml to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.2

All Versions

Choose a version of org.apache.sling : org.apache.sling.fragment.xml to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
org.apache.sling.fragment.xml-1.0.2
org.apache.sling.fragment.xml-1.0.0

How to add a dependency to Maven

Add the following org.apache.sling : org.apache.sling.fragment.xml maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.sling</groupId>
    <artifactId>org.apache.sling.fragment.xml</artifactId>
    <version>1.0.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.sling : org.apache.sling.fragment.xml gradle dependency to your build.gradle file:

implementation 'org.apache.sling:org.apache.sling.fragment.xml:1.0.2'

Gradle Kotlin DSL: Add the following org.apache.sling : org.apache.sling.fragment.xml gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.sling:org.apache.sling.fragment.xml:1.0.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.sling : org.apache.sling.fragment.xml sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.sling" % "org.apache.sling.fragment.xml" % "1.0.2"

Advertisement