组织ID: |
com.samskivert |
项目ID: |
jmustache |
版本: |
1.5 |
最后修改时间: |
2018-08-22 20:31:25 |
包类型: |
jar |
标题: |
jmustache |
描述: |
A Java implementation of the Mustache templating language. |
相关URL: |
http://github.com/samskivert/jmustache |
大小: |
47.07KB |
|
Maven引入代码: |
<dependency>
<groupId>com.samskivert</groupId>
<artifactId>jmustache</artifactId>
<version>1.5</version>
</dependency>
|
Gradle引入代码: |
com.samskivert:jmustache:1.5
|
下载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.5</version>
<name>jmustache</name>
<description>A Java implementation of the Mustache templating language.</description>
<url>http://github.com/samskivert/jmustache</url>
<issueManagement>
<url>http://github.com/samskivert/jmustache/issues</url>
</issueManagement>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<licenses>
<license>
<name>The (New) BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</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:git:git://github.com/samskivert/jmustache.git</connection>
<developerConnection>scm:git:git@github.com:samskivert/jmustache.git</developerConnection>
<url>http://github.com/samskivert/jmustache</url>
</scm>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>2.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<!-- we include the source files in our main jar for use by GWT -->
<resources>
<resource>
<directory>${project.build.sourceDirectory}</directory>
<excludes>
<exclude>com/samskivert/mustache/DefaultCollector.java</exclude>
</excludes>
</resource>
</resources>
<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>
<excludes>
<exclude>com/samskivert/gwt/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.4.0</version>
<configuration>
<mode>htmlunit</mode>
</configuration>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</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>
<configuration>
<includes><include>**/*Test.java</include></includes>
</configuration>
</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/gwt/com/samskivert/mustache/DefaultCollector.java
com/samskivert/gwt/java/io/Reader.java
com/samskivert/gwt/java/io/StringReader.java
com/samskivert/gwt/java/io/StringWriter.java
com/samskivert/gwt/java/io/Writer.java
com.samskivert.mustache.BasicCollector$1.class
com.samskivert.mustache.BasicCollector$2.class
com.samskivert.mustache.BasicCollector.class
com/samskivert/mustache/BasicCollector.java
com.samskivert.mustache.DefaultCollector$1.class
com.samskivert.mustache.DefaultCollector$2.class
com.samskivert.mustache.DefaultCollector$3.class
com.samskivert.mustache.DefaultCollector.class
com.samskivert.mustache.Mustache$1.class
com.samskivert.mustache.Mustache$Accumulator$1.class
com.samskivert.mustache.Mustache$Accumulator$2.class
com.samskivert.mustache.Mustache$Accumulator.class
com.samskivert.mustache.Mustache$BlockSegment.class
com.samskivert.mustache.Mustache$Collector.class
com.samskivert.mustache.Mustache$Compiler.class
com.samskivert.mustache.Mustache$Delims.class
com.samskivert.mustache.Mustache$IncludedTemplateSegment.class
com.samskivert.mustache.Mustache$InvertedSectionSegment.class
com.samskivert.mustache.Mustache$NamedSegment.class
com.samskivert.mustache.Mustache$Parser.class
com.samskivert.mustache.Mustache$SectionSegment.class
com.samskivert.mustache.Mustache$StringSegment.class
com.samskivert.mustache.Mustache$TemplateLoader.class
com.samskivert.mustache.Mustache$VariableFetcher.class
com.samskivert.mustache.Mustache$VariableSegment.class
com.samskivert.mustache.Mustache.class
com/samskivert/mustache/Mustache.java
com.samskivert.mustache.MustacheException$Parse.class
com.samskivert.mustache.MustacheException.class
com/samskivert/mustache/MustacheException.java
com.samskivert.mustache.MustacheParseException.class
com/samskivert/mustache/MustacheParseException.java
com.samskivert.mustache.Template$Context.class
com.samskivert.mustache.Template$Key.class
com.samskivert.mustache.Template$Segment.class
com.samskivert.mustache.Template.class
com/samskivert/mustache/Template.java
com/samskivert/Mustache.gwt.xml
META-INF/maven/com.samskivert/jmustache/pom.xml
META-INF/maven/com.samskivert/jmustache/pom.properties
|
依赖Jar: |
gwt-user-2.4.0.jar
/com.google.gwt/gwt-user/2.4.0
查看gwt-user所有版本文件
junit-4.8.1.jar
/junit/junit/4.8.1
查看junit所有版本文件
|