Download j2html-0.7.jar file

Introduction

You can download j2html-0.7.jar in this page.

License

The Apache Software License, Version 2.0

Type List

j2html-0.7.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.j2html/j2html/pom.properties
META-INF/maven/com.j2html/j2html/pom.xml
j2html.TagCreator.class
j2html.attributes.Attr.class
j2html.attributes.Attribute.class
j2html.tags.ContainerTag.class
j2html.tags.EmptyTag.class
j2html.tags.InlineStaticResource.class
j2html.tags.Tag.class
j2html.tags.Text.class
j2html.tags.UnescapedText.class
j2html.utils.CSSMin.class
j2html.utils.Constants.class
j2html.utils.EmptySelectorBodyException.class
j2html.utils.IncompletePropertyException.class
j2html.utils.IncompleteSelectorException.class
j2html.utils.JSMin.class
j2html.utils.Part.class
j2html.utils.Property.class
j2html.utils.Selector.class
j2html.utils.UnbalancedBracesException.class
j2html.utils.UnterminatedCommentException.class
j2html.utils.UnterminatedSelectorException.class

Pom

j2html-0.7.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<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>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <groupId>com.j2html</groupId>
    <artifactId>j2html</artifactId>
    <version>0.7</version>

    <name>j2html</name>
    <description>Java to HTML builder with a fluent API</description>
    <url>http://j2html.com</url>

    <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>
    <scm>
        <connection>scm:git:git@github.com:tipsy/j2html.git</connection>
        <developerConnection>scm:git:git@github.com:tipsy/j2html.git</developerConnection>
        <url>https://github.com/tipsy/j2html.git</url>
        <tag>HEAD</tag>
    </scm>
    <developers>
        <developer>
            <name>David ?se</name>
        </developer>
    </developers>
    <issueManagement>
        <system>GitHub Issue Tracker</system>
        <url>https://github.com/tipsy/j2html/issues</url>
    </issueManagement>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.4</version>
        </dependency>
        <dependency>
            <groupId>com.google.javascript</groupId>
            <artifactId>closure-compiler</artifactId>
            <version>r2388</version>
        </dependency>
    </dependencies>

    <packaging>jar</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <optimize>true</optimize>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-enforcer-plugin</artifactId>
                <version>1.4</version>
                <executions>
                    <execution>
                        <id>enforce-java</id>
                        <goals>
                            <goal>enforce</goal>
                        </goals>
                        <configuration>
                            <rules>
                                <requireJavaVersion>
                                    <version>[1.7,)</version>
                                </requireJavaVersion>
                            </rules>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.10.3</version>
                <configuration>
                </configuration>
            </plugin>
        </plugins>

    </build>

    <profiles>
        <profile>
            <id>sign-artifacts</id>
            <activation>
                <property>
                    <name>sign</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.6</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

</project>

POM Entry

<dependency>
   <groupId>com.j2html</groupId>
   <artifactId>j2html</artifactId>
   <version>0.7</version>
</dependency>

Download

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



Download j2html-0.7.jar file




PreviousNext

Related