Download jena-iri-3.0.1.jar file

Introduction

You can download jena-iri-3.0.1.jar in this page.

License

Apache License

Type List

jena-iri-3.0.1.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.jena/jena-iri/pom.properties
META-INF/maven/org.apache.jena/jena-iri/pom.xml
org.apache.jena.iri.IRI.class
org.apache.jena.iri.IRIComponents.class
org.apache.jena.iri.IRIException.class
org.apache.jena.iri.IRIFactory.class
org.apache.jena.iri.IRIFactoryI.class
org.apache.jena.iri.IRIRelativize.class
org.apache.jena.iri.MalformedIDNException.class
org.apache.jena.iri.Violation.class
org.apache.jena.iri.ViolationCodes.class
org.apache.jena.iri.impl.AbsIRIFactoryImpl.class
org.apache.jena.iri.impl.AbsIRIImpl.class
org.apache.jena.iri.impl.AbsLexer.class
org.apache.jena.iri.impl.BuildViolationCodes.class
org.apache.jena.iri.impl.ComponentPattern.class
org.apache.jena.iri.impl.ComponentPatternParser.class
org.apache.jena.iri.impl.ErrorAction.class
org.apache.jena.iri.impl.Force.class
org.apache.jena.iri.impl.GroupAction.class
org.apache.jena.iri.impl.HostAction.class
org.apache.jena.iri.impl.IDNP.class
org.apache.jena.iri.impl.IRIExamples.class
org.apache.jena.iri.impl.IRIFactoryImpl.class
org.apache.jena.iri.impl.IRIImpl.class
org.apache.jena.iri.impl.IRIImplException.class
org.apache.jena.iri.impl.Lexer.class
org.apache.jena.iri.impl.LexerFragment.class
org.apache.jena.iri.impl.LexerHost.class
org.apache.jena.iri.impl.LexerPath.class
org.apache.jena.iri.impl.LexerPort.class
org.apache.jena.iri.impl.LexerQuery.class
org.apache.jena.iri.impl.LexerScheme.class
org.apache.jena.iri.impl.LexerUserinfo.class
org.apache.jena.iri.impl.LexerXHost.class
org.apache.jena.iri.impl.Main.class
org.apache.jena.iri.impl.Parser.class
org.apache.jena.iri.impl.PatternCompiler.class
org.apache.jena.iri.impl.ResolvedRelativeIRI.class
org.apache.jena.iri.impl.SchemeSpecificPart.class
org.apache.jena.iri.impl.SchemeSpecification.class
org.apache.jena.iri.impl.Specification.class
org.apache.jena.iri.impl.Test.class
org.apache.jena.iri.impl.VarPattern.class
org.apache.jena.iri.impl.ViolationCodeInfo.class
org.apache.jena.iri.impl.ViolationImpl.class

Pom

jena-iri-3.0.1.pom file content.

<?xml version="1.0" encoding="utf-8"?>
<!--
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You 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.
-->

<!-- POM file for Jena IRI library -->

<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>
  <artifactId>jena-iri</artifactId>
  <packaging>jar</packaging>
  <name>Apache Jena - IRI</name>
  <version>3.0.1</version>
    <parent>
    <groupId>org.apache.jena</groupId>
    <artifactId>jena-parent</artifactId>
    <version>15</version>
    <relativePath>../jena-parent</relativePath>
  </parent> 
  
  <description>
    The IRI module provides an implementation of the IRI and URI specifications (RFC 3987 and 3986) which are used across Jena in order to comply with relevant W3C specifications for RDF and SPARQL which require conformance to these specifications.
  </description>

  <dependencies>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>

  </dependencies>

  <build>

    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>org/apache/jena/iri/test/TestPackage.java</include>
          </includes>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions> 
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar-no-fork</goal>
            </goals>
          </execution>
          <!--
          <execution>
            <id>attach-sources-test</id>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
          -->
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <version>true</version>
          <show>public</show>
          <quiet>true</quiet>
          <encoding>UTF-8</encoding>
          <windowtitle>Apache Jena IRI </windowtitle>
          <doctitle>Apache Jena IRI ${project.version}</doctitle>
          <bottom>Licenced under the Apache License, Version 2.0</bottom>
        </configuration>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <configuration>
          <encoding>UTF-8</encoding>
        </configuration>
      </plugin>
      
    </plugins>
  </build>
  
</project>

POM Entry

<dependency>
   <groupId>org.apache.jena</groupId>
   <artifactId>jena-iri</artifactId>
   <version>3.0.1</version>
</dependency>

Download

If you think the following jena-iri-3.0.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download jena-iri-3.0.1.jar file




PreviousNext

Related