Download duel-runtime-0.9.7.jar file

Introduction

You can download duel-runtime-0.9.7.jar in this page.

License

MIT License

Type List

duel-runtime-0.9.7.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.duelengine/duel-runtime/pom.properties
META-INF/maven/org.duelengine/duel-runtime/pom.xml
org.duelengine.duel.ArrayIterable.class
org.duelengine.duel.CDNLinkInterceptor.class
org.duelengine.duel.ClientIDStrategy.class
org.duelengine.duel.ClockClientIDStrategy.class
org.duelengine.duel.DataEncoder.class
org.duelengine.duel.DuelContext.class
org.duelengine.duel.DuelData.class
org.duelengine.duel.DuelPart.class
org.duelengine.duel.DuelView.class
org.duelengine.duel.FormatPrefs.class
org.duelengine.duel.HTMLFormatter.class
org.duelengine.duel.IncClientIDStrategy.class
org.duelengine.duel.JSUtility.class
org.duelengine.duel.LinkInterceptor.class
org.duelengine.duel.ProxyMap.class
org.duelengine.duel.SingleIterable.class
org.duelengine.duel.SparseMap.class
org.duelengine.duel.UniqueClientIDStrategy.class
org/duelengine/duel/JSUtility.properties

Pom

duel-runtime-0.9.7.pom file content.

<?xml version="1.0"?>
<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>
		<relativePath></relativePath>
	</parent>

	<groupId>org.duelengine</groupId>
	<artifactId>duel-runtime</artifactId>
	<version>0.9.7</version>
	<packaging>jar</packaging>

	<name>DUEL Runtime</name>
	<description>Dual-side template engine for the JVM</description>
	<url>http://duelengine.org</url>
	<licenses>
		<license>
			<name>MIT License</name>
			<url>http://duelengine.org/LICENSE.txt</url>
		</license>
	</licenses>
	<scm>
		<url>https://bitbucket.org/mckamey/duel</url>
		<connection>scm:hg:https://bitbucket.org/mckamey/duel</connection>
		<developerConnection>scm:hg:https://bitbucket.org/mckamey/duel</developerConnection>
	</scm>
	<developers>
		<developer>
			<id>mckamey</id>
			<name>Stephen M. McKamey</name>
			<url>http://mck.me</url>
		</developer>
	</developers>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

		<slf4j.version>1.7.12</slf4j.version>
		<junit.version>4.12</junit.version>
		<jvm.version>1.6</jvm.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>${slf4j.version}</version>
		</dependency>
		<dependency>
			<groupId>com.pseudocode</groupId>
			<artifactId>slf4j-compact</artifactId>
			<version>${slf4j.version}</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<!-- generate javadoc -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.9.1</version>
				<configuration>
					<nohelp>true</nohelp>
				</configuration>
			</plugin>
		</plugins>
		<pluginManagement>
			<plugins>
				<!-- Java compiler settings -->
				<plugin>
					<artifactId>maven-compiler-plugin</artifactId>
					<configuration>
						<source>${jvm.version}</source>
						<target>${jvm.version}</target>
					</configuration>
				</plugin>

				<!-- http://wiki.eclipse.org/M2E_plugin_execution_not_covered -->
				<plugin>
					<groupId>org.eclipse.m2e</groupId>
					<artifactId>lifecycle-mapping</artifactId>
					<version>1.0.0</version>
					<configuration>
						<lifecycleMappingMetadata>
							<pluginExecutions>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>org.apache.maven.plugins</groupId>
										<artifactId>maven-enforcer-plugin</artifactId>
										<versionRange>[1.0.0,)</versionRange>
										<goals>
											<goal>enforce</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore />
									</action>
								</pluginExecution>
							</pluginExecutions>
						</lifecycleMappingMetadata>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</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.4</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>org.duelengine</groupId>
   <artifactId>duel-runtime</artifactId>
   <version>0.9.7</version>
</dependency>

Download

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



Download duel-runtime-0.9.7.jar file




PreviousNext

Related