Download unbescape-1.1.0.release.jar file

Introduction

You can download unbescape-1.1.0.release.jar in this page.

License

The Apache Software License, Version 2.0

Type List

unbescape-1.1.0.release.jar file has the following types.

META-INF/LICENSE.txt
META-INF/MANIFEST.MF
META-INF/NOTICE.txt
org.unbescape.css.CssEscape.class
org.unbescape.css.CssIdentifierEscapeLevel.class
org.unbescape.css.CssIdentifierEscapeType.class
org.unbescape.css.CssIdentifierEscapeUtil.class
org.unbescape.css.CssStringEscapeLevel.class
org.unbescape.css.CssStringEscapeType.class
org.unbescape.css.CssStringEscapeUtil.class
org.unbescape.css.CssUnescapeUtil.class
org.unbescape.csv.CsvEscape.class
org.unbescape.csv.CsvEscapeUtil.class
org.unbescape.html.Html4EscapeSymbolsInitializer.class
org.unbescape.html.Html5EscapeSymbolsInitializer.class
org.unbescape.html.HtmlEscape.class
org.unbescape.html.HtmlEscapeLevel.class
org.unbescape.html.HtmlEscapeSymbols.class
org.unbescape.html.HtmlEscapeType.class
org.unbescape.html.HtmlEscapeUtil.class
org.unbescape.java.JavaEscape.class
org.unbescape.java.JavaEscapeLevel.class
org.unbescape.java.JavaEscapeUtil.class
org.unbescape.javascript.JavaScriptEscape.class
org.unbescape.javascript.JavaScriptEscapeLevel.class
org.unbescape.javascript.JavaScriptEscapeType.class
org.unbescape.javascript.JavaScriptEscapeUtil.class
org.unbescape.json.JsonEscape.class
org.unbescape.json.JsonEscapeLevel.class
org.unbescape.json.JsonEscapeType.class
org.unbescape.json.JsonEscapeUtil.class
org.unbescape.properties.PropertiesEscape.class
org.unbescape.properties.PropertiesKeyEscapeLevel.class
org.unbescape.properties.PropertiesKeyEscapeUtil.class
org.unbescape.properties.PropertiesUnescapeUtil.class
org.unbescape.properties.PropertiesValueEscapeLevel.class
org.unbescape.properties.PropertiesValueEscapeUtil.class
org.unbescape.uri.UriEscape.class
org.unbescape.uri.UriEscapeUtil.class
org.unbescape.xml.Xml10EscapeSymbolsInitializer.class
org.unbescape.xml.Xml11EscapeSymbolsInitializer.class
org.unbescape.xml.XmlCodepointValidator.class
org.unbescape.xml.XmlEscape.class
org.unbescape.xml.XmlEscapeLevel.class
org.unbescape.xml.XmlEscapeSymbols.class
org.unbescape.xml.XmlEscapeType.class
org.unbescape.xml.XmlEscapeUtil.class

Pom

unbescape-1.1.0.release.pom file content.

<?xml version="1.0" encoding="UTF-8"?>

<!-- ========================================================================= -->
<!--                                                                           -->
<!--   Copyright (c) 2014, The UNBESCAPE team (http://www.unbescape.org)       -->
<!--                                                                           -->
<!--   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.                          -->
<!--                                                                           -->
<!-- ========================================================================= -->

<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>org.unbescape</groupId>
  <artifactId>unbescape</artifactId>
  <packaging>jar</packaging>
  <version>1.1.0.RELEASE</version>
  <name>unbescape</name>
  <url>http://www.unbescape.org</url>

  <description>Advanced yet easy-to-use escape/unescape library for Java</description>

  <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>

  <organization>
    <name>The UNBESCAPE team</name>
    <url>http://www.unbescape.org</url>
  </organization>
  
  <scm>
    <url>scm:git:git@github.com:unbescape/unbescape.git</url>
    <connection>scm:git:git@github.com:unbescape/unbescape.git</connection>
    <developerConnection>scm:git:git@github.com:unbescape/unbescape.git</developerConnection>
  </scm>
  
  <developers>
    <developer>
      <id>danielfernandez</id>
      <name>Daniel Fernandez</name>
      <email>daniel.fernandez AT 11thlabs DOT org</email>
      <roles>
        <role>Project Admin</role>
        <role>Lead Developer</role>
      </roles>
    </developer>
  </developers>
  
  <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-snapshots</id>
      <name>Sonatype Nexus Snapshots</name>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
    </repository>
  </distributionManagement>

  <repositories>
    <repository>
      <id>sonatype-nexus-snapshots</id>
      <name>Sonatype Nexus Snapshots</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>

  <properties>
    <maven.compile.source>1.5</maven.compile.source>
    <maven.compile.target>1.5</maven.compile.target>
  </properties>


  <build>

    <resources>
    
      <resource>
        <directory>src/main/resources</directory>
      </resource>
    
      <resource>
          <directory>.</directory>
          <targetPath>META-INF</targetPath>
          <includes>
              <include>LICENSE.txt</include>
              <include>NOTICE.txt</include>
          </includes>
      </resource>
      
    </resources>
    
    <testResources>
      <testResource>
        <directory>src/test/resources</directory>
      </testResource>
    </testResources>
    
    <plugins>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>${maven.compile.source}</source>
          <target>${maven.compile.target}</target>
          <encoding>US-ASCII</encoding>
        </configuration>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <encoding>US-ASCII</encoding>
        </configuration>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9.1</version>
        <configuration>
          <show>protected</show>
          <noqualifier>java.lang</noqualifier>
          <overview>${basedir}/src/main/javadoc/overview.html</overview>
          <javadocDirectory>${basedir}/src/main/javadoc</javadocDirectory>
          <reportOutputDirectory>${project.reporting.outputDirectory}/api/${project.artifactId}/apidocs</reportOutputDirectory>
        </configuration>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.1.2</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>2.4.0</version>
        <executions>
          <execution>
            <id>bundle-manifest</id>
            <phase>process-classes</phase>
            <goals>
              <goal>manifest</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <archive>
            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
            <addMavenDescriptor>false</addMavenDescriptor>
            <manifest>
              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
            </manifest>
            <manifestEntries>
              <!-- These two entries are non-standard, specified by the Apache Software Foundation in -->
              <!-- their release preparation procedures as a way to pass this information on to the   -->
              <!-- library users. See: http://commons.apache.org/releases/prepare.html                -->
              <X-Compile-Source-JDK>${maven.compile.source}</X-Compile-Source-JDK>
              <X-Compile-Target-JDK>${maven.compile.target}</X-Compile-Target-JDK>
            </manifestEntries>
          </archive>
        </configuration>
      </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>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.1</version>
      </plugin>
	  
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.2</version>
        <configuration>
          <descriptors>
            <descriptor>src/assembly/dist.xml</descriptor>
          </descriptors>
        </configuration>
        <executions>
          <execution>
            <id>make-assembly-deps</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-site-plugin</artifactId>
        <version>3.1</version>
		    <configuration>
          <reportPlugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-project-info-reports-plugin</artifactId>
              <version>2.2</version>
              <reports>
                <report>license</report>
              </reports>
            </plugin>
          </reportPlugins>
        </configuration>
      </plugin>

    </plugins>
    
  </build>

  <dependencies>


  </dependencies>

  
</project>

POM Entry

<dependency>
   <groupId>org.unbescape</groupId>
   <artifactId>unbescape</artifactId>
   <version>1.1.0.release</version>
</dependency>

Download

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



Download unbescape-1.1.0.release.jar file




PreviousNext

Related