组织ID: |
com.samskivert |
项目ID: |
jmustache |
版本: |
1.0 |
最后修改时间: |
2019-10-22 23:12:19 |
包类型: |
jar |
标题: |
jmustache |
描述: |
A Java implementation of the Mustache templating language. |
相关URL: |
http://code.google.com/p/jmustache/ |
大小: |
24.61KB |
|
Maven引入代码: |
<dependency>
<groupId>com.samskivert</groupId>
<artifactId>jmustache</artifactId>
<version>1.0</version>
</dependency>
|
Gradle引入代码: |
com.samskivert:jmustache:1.0
|
下载Jar包: |
|
POM文件内容: |
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.samskivert</groupId>
<artifactId>jmustache</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>jmustache</name>
<description>A Java implementation of the Mustache templating language.</description>
<url>http://code.google.com/p/jmustache/</url>
<issueManagement>
<url>http://code.google.com/p/jmustache/issues/list</url>
</issueManagement>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPL), Version 2.1</name>
<url>http://www.fsf.org/licensing/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>samskivert</id>
<name>Michael Bayne</name>
<email>mdb@samskivert.com</email>
</developer>
</developers>
<scm>
<connection>scm:svn:http://jmustache.googlecode.com/svn/tags/jmustache-1.0</connection>
<developerConnection>scm:svn:https://jmustache.googlecode.com/svn/tags/jmustache-1.0</developerConnection>
<url>http://jmustache.googlecode.com/svn/tags/jmustache-1.0</url>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<fork>true</fork>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<!-- yes, those quoted spaces are a workaround sanctioned by the Maven idiocracy -->
<compilerArgument>-Xlint" "-Xlint:-serial" "-Xlint:-path</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<quiet>true</quiet>
<show>public</show>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.5</version>
</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.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<keyname>mdb@samskivert.com</keyname>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.samskivert.mustache.Mustache$CompoundSegment.class
com.samskivert.mustache.Template$2.class
com.samskivert.mustache.MustacheException.class
com.samskivert.mustache.Mustache$Accumulator$2.class
com.samskivert.mustache.Template$Mode.class
com.samskivert.mustache.Template$4.class
com.samskivert.mustache.Mustache$Accumulator$1.class
com.samskivert.mustache.Mustache$Compiler.class
com.samskivert.mustache.Mustache.class
com.samskivert.mustache.Template$1.class
com.samskivert.mustache.Mustache$VariableSegment.class
com.samskivert.mustache.Template$Key.class
com.samskivert.mustache.Template$VariableFetcher.class
com.samskivert.mustache.Template$Segment.class
com.samskivert.mustache.Mustache$SectionSegment.class
com.samskivert.mustache.Mustache$InvertedSectionSegment.class
com.samskivert.mustache.Mustache$Accumulator.class
com.samskivert.mustache.Template$Context.class
com.samskivert.mustache.Mustache$NamedSegment.class
com.samskivert.mustache.Template$3.class
com.samskivert.mustache.Mustache$StringSegment.class
com.samskivert.mustache.Template.class
META-INF/maven/com.samskivert/jmustache/pom.xml
META-INF/maven/com.samskivert/jmustache/pom.properties
|
依赖Jar: |
junit-4.8.1.jar
/junit/junit/4.8.1
查看junit所有版本文件
|