You can download compiler-0.9.4.jar in this page.
Apache License 2.0
compiler-0.9.4.jar file has the following types.
META-INF.maven.com.github.spullara.mustache.java.compiler.pom.properties META-INF.maven.com.github.spullara.mustache.java.compiler.pom.xml META-INF/MANIFEST.MF com.github.mustachejava.Binding.class com.github.mustachejava.Code.class com.github.mustachejava.DefaultMustacheFactory.class com.github.mustachejava.DefaultMustacheVisitor.class com.github.mustachejava.DeferringMustacheFactory.class com.github.mustachejava.FallbackMustacheFactory.class com.github.mustachejava.FragmentKey.class com.github.mustachejava.Iteration.class com.github.mustachejava.Mustache.class com.github.mustachejava.MustacheException.class com.github.mustachejava.MustacheFactory.class com.github.mustachejava.MustacheNotFoundException.class com.github.mustachejava.MustacheParser.class com.github.mustachejava.MustacheResolver.class com.github.mustachejava.MustacheVisitor.class com.github.mustachejava.ObjectHandler.class com.github.mustachejava.PragmaHandler.class com.github.mustachejava.TemplateContext.class com.github.mustachejava.TemplateFunction.class com.github.mustachejava.TypeCheckingHandler.class com.github.mustachejava.codes.CommentCode.class com.github.mustachejava.codes.DefaultCode.class com.github.mustachejava.codes.DefaultMustache.class com.github.mustachejava.codes.DepthLimitedWriter.class com.github.mustachejava.codes.ExtendCode.class com.github.mustachejava.codes.ExtendNameCode.class com.github.mustachejava.codes.IterableCode.class com.github.mustachejava.codes.NotIterableCode.class com.github.mustachejava.codes.PartialCode.class com.github.mustachejava.codes.ValueCode.class com.github.mustachejava.codes.WriteCode.class com.github.mustachejava.functions.BundleFunctions.class com.github.mustachejava.functions.CommentFunction.class com.github.mustachejava.functions.TranslateBundleFunction.class com.github.mustachejava.reflect.BaseObjectHandler.class com.github.mustachejava.reflect.Guard.class com.github.mustachejava.reflect.GuardedBinding.class com.github.mustachejava.reflect.GuardedWrapper.class com.github.mustachejava.reflect.MissingWrapper.class com.github.mustachejava.reflect.ReflectionObjectHandler.class com.github.mustachejava.reflect.ReflectionWrapper.class com.github.mustachejava.reflect.SimpleObjectHandler.class com.github.mustachejava.reflect.guards.ClassGuard.class com.github.mustachejava.reflect.guards.DepthGuard.class com.github.mustachejava.reflect.guards.DotGuard.class com.github.mustachejava.reflect.guards.MapGuard.class com.github.mustachejava.reflect.guards.NullGuard.class com.github.mustachejava.reflect.guards.WrappedGuard.class com.github.mustachejava.resolver.ClasspathResolver.class com.github.mustachejava.resolver.DefaultResolver.class com.github.mustachejava.resolver.FileSystemResolver.class com.github.mustachejava.util.CapturingMustacheVisitor.class com.github.mustachejava.util.DecoratedCollection.class com.github.mustachejava.util.Element.class com.github.mustachejava.util.GuardException.class com.github.mustachejava.util.HtmlEscaper.class com.github.mustachejava.util.InternalArrayList.class com.github.mustachejava.util.LatchedWriter.class com.github.mustachejava.util.Node.class com.github.mustachejava.util.NodeValue.class com.github.mustachejava.util.Wrapper.class
compiler-0.9.4.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"> <parent> <artifactId>mustache.java</artifactId> <groupId>com.github.spullara.mustache.java</groupId> <version>0.9.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>compiler</artifactId> <packaging>jar</packaging> <name>compiler</name> <description>Implementation of mustache.js for Java</description> <url>http://github.com/spullara/mustache.java</url> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/spullara/mustache.java.git</connection> <url>http://github.com/spullara/mustache.java</url> <tag>mustache.java-0.9.4</tag> </scm> <developers> <developer> <name>Sam Pullara</name> <email>sam@sampullara.com</email> <url>http://www.javarants.com</url> </developer> </developers> <repositories> <repository> <id>Twitter</id> <url>http://maven.twttr.com/</url> </repository> </repositories> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.7.4</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.7.4</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <executions> <execution> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <additionalClasspathElements> <additionalClasspathElement>${project.basedir}/src/test/resources/templates.jar</additionalClasspathElement> </additionalClasspathElements> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.github.spullara.mustache.java</groupId> <artifactId>compiler</artifactId> <version>0.9.4</version> </dependency>
If you think the following compiler-0.9.4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download compiler-0.9.4.jar file