| 组织ID: |
com.floreysoft |
| 项目ID: |
jmte |
| 版本: |
4.0.0 |
| 最后修改时间: |
2018-07-30 12:32:34 |
| 包类型: |
jar |
| 标题: |
Java Minimal Template Engine |
| 描述: |
To build and locally install jar, javadoc and sources, please use:
mvn clean javadoc:jar source:jar install -Dmaven.test.skip=true
Tested on Maven 2.0.9, JDK 1.7
|
| 相关URL: |
http://code.google.com/p/jmte/ |
| 大小: |
101.85KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.floreysoft</groupId>
<artifactId>jmte</artifactId>
<version>4.0.0</version>
</dependency>
|
| Gradle引入代码: |
com.floreysoft:jmte:4.0.0
|
| 下载Jar包: |
|
| POM文件内容: |
<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">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.floreysoft</groupId>
<artifactId>jmte</artifactId>
<packaging>jar</packaging>
<version>4.0.0</version>
<name>Java Minimal Template Engine</name>
<description>
To build and locally install jar, javadoc and sources, please use:
mvn clean javadoc:jar source:jar install -Dmaven.test.skip=true
Tested on Maven 2.0.9, JDK 1.7
</description>
<url>http://code.google.com/p/jmte/</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:https://github.com/DJCordhose/jmte.git</connection>
<developerConnection>scm:git:git@github.com:DJCordhose/jmte.git</developerConnection>
</scm>
<developers>
<developer>
<id>jmte-oliver-zeigermann</id>
<name>Oliver.Zeigermann</name>
<email>oliver.zeiger....@gmail.com</email>
</developer>
<developer>
<id>jmte-hpaluch</id>
<name>Henryk Paluch</name>
<email>hpal...@seznam.cz</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>com.google.caliper</groupId>
<artifactId>caliper</artifactId>
<version>0.5-rc1</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- compatible with Ant structure -->
<build>
<sourceDirectory>${basedir}/src</sourceDirectory>
<testSourceDirectory>${basedir}/test</testSourceDirectory>
<resources>
<resource>
<directory>${project.basedir}/src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<directory>${project.basedir}/test</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
<debug>true</debug>
<testExcludes>
<exclude>**/*CaliperTest.java</exclude>
</testExcludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*CaliperTest.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<failOnError>false</failOnError>
<show>public</show>
<links>
<link>http://docs.oracle.com/javase/8/docs/api/</link>
</links>
<windowtitle>${project.name} - Public API</windowtitle>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>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>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.floreysoft.jmte.AnnotationProcessor.class
com.floreysoft.jmte.template.DynamicBytecodeCompiler$DelegatingClassLoader.class
com.floreysoft.jmte.template.OutputAppender.class
com.floreysoft.jmte.template.VariableDescription.class
com.floreysoft.jmte.template.AbstractCompiledTemplate.class
com.floreysoft.jmte.template.InterpretedTemplate.class
com.floreysoft.jmte.template.TemplateCompiler.class
com.floreysoft.jmte.template.DynamicBytecodeCompiler.class
com.floreysoft.jmte.template.ErrorReportingOutputAppender.class
com.floreysoft.jmte.template.VariableDescription$Context.class
com.floreysoft.jmte.template.DefaultOutputAppender.class
com.floreysoft.jmte.template.InterpretedTemplate$1.class
com.floreysoft.jmte.template.AbstractTemplate.class
com.floreysoft.jmte.template.Template.class
com.floreysoft.jmte.message.ProductionErrorHandler.class
com.floreysoft.jmte.message.ErrorMessage.class
com.floreysoft.jmte.message.ParseException.class
com.floreysoft.jmte.message.JournalingErrorHandler.class
com.floreysoft.jmte.message.AbstractErrorHandler.class
com.floreysoft.jmte.message.SilentErrorHandler.class
com.floreysoft.jmte.message.NoLogErrorHandler.class
com.floreysoft.jmte.message.DefaultErrorHandler.class
com.floreysoft.jmte.message.ErrorEntry.class
com.floreysoft.jmte.message.ResourceBundleMessage.class
com/floreysoft/jmte/message/messages.properties
com.floreysoft.jmte.message.Message.class
com.floreysoft.jmte.message.MessageException.class
com.floreysoft.jmte.message.InternalErrorHandler.class
com.floreysoft.jmte.util.UniqueNameGenerator.class
com.floreysoft.jmte.util.NestedParser.class
com.floreysoft.jmte.util.StartEndPair.class
com.floreysoft.jmte.util.Util.class
com.floreysoft.jmte.util.Tool.class
com.floreysoft.jmte.util.MiniParser.class
com.floreysoft.jmte.DefaultModelAdaptor$LoopMode.class
com.floreysoft.jmte.Engine$1.class
com.floreysoft.jmte.ProcessListener$Action.class
com.floreysoft.jmte.token.StringToken.class
com.floreysoft.jmte.token.PlainTextToken.class
com.floreysoft.jmte.token.EndToken.class
com.floreysoft.jmte.token.ElseToken.class
com.floreysoft.jmte.token.AnnotationToken.class
com.floreysoft.jmte.token.InvalidToken.class
com.floreysoft.jmte.token.IfCmpToken.class
com.floreysoft.jmte.token.Token.class
com.floreysoft.jmte.token.TokenStream.class
com.floreysoft.jmte.token.AbstractToken.class
com.floreysoft.jmte.token.IfToken.class
com.floreysoft.jmte.token.IfCmpRendererToken.class
com.floreysoft.jmte.token.ForEachToken.class
com.floreysoft.jmte.token.Lexer.class
com.floreysoft.jmte.token.ExpressionToken.class
com.floreysoft.jmte.Engine.class
com.floreysoft.jmte.renderer.DefaultMapRenderer.class
com.floreysoft.jmte.renderer.NullRenderer.class
com.floreysoft.jmte.renderer.DefaultCollectionRenderer.class
com.floreysoft.jmte.renderer.DefaultIterableRenderer.class
com.floreysoft.jmte.renderer.RawRenderer.class
com.floreysoft.jmte.renderer.SimpleNamedRenderer.class
com.floreysoft.jmte.renderer.AbstractParameterRenderer.class
com.floreysoft.jmte.renderer.OptionRenderFormatInfo.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
junit-4.9.jar
/junit/junit/4.9
查看junit所有版本文件
asm-3.3.1.jar
/asm/asm/3.3.1
查看asm所有版本文件
caliper-0.5-rc1.jar
/com.google.caliper/caliper/0.5-rc1
查看caliper所有版本文件
|