Download gwt-sl-1.3.jar file

Introduction

You can download gwt-sl-1.3.jar in this page.

License

The Apache Software License, Version 2.0

Type List

gwt-sl-1.3.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/net.sf.gwt-widget/gwt-sl/pom.properties
META-INF/maven/net.sf.gwt-widget/gwt-sl/pom.xml
org.gwtwidgets.client.stream.HtmlStreamReader.class
org.gwtwidgets.client.stream.Message.class
org.gwtwidgets.client.stream.StreamCallback.class
org.gwtwidgets.client.stream.StreamProtocolException.class
org.gwtwidgets.server.filters.ResponseHeaderFilter.class
org.gwtwidgets.server.spring.DefaultRPCServiceExporterFactory.class
org.gwtwidgets.server.spring.DefaultSerializationPolicyProvider.class
org.gwtwidgets.server.spring.GWTHandler.class
org.gwtwidgets.server.spring.GWTRPCServiceExporter.class
org.gwtwidgets.server.spring.GWTSpringController.class
org.gwtwidgets.server.spring.ModulePathTranslation.class
org.gwtwidgets.server.spring.RPCServiceExporter.class
org.gwtwidgets.server.spring.RPCServiceExporterFactory.class
org.gwtwidgets.server.spring.ReflectionUtils.class
org.gwtwidgets.server.spring.RequestInjection.class
org.gwtwidgets.server.spring.SerializationPolicyProvider.class
org.gwtwidgets.server.spring.ServletUtils.class
org.gwtwidgets.server.spring.ThrowableHandler.class
org.gwtwidgets.server.spring.stream.HtmlSLStreamWriterImpl.class
org.gwtwidgets.server.spring.stream.MessageProvider.class
org.gwtwidgets.server.spring.stream.SLStreamWriter.class
org.gwtwidgets.server.spring.util.ImmutableCopyMap.class
org.gwtwidgets.server.spring.util.TracingExporter.class

Pom

gwt-sl-1.3.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/maven-v4_0_0.xsd">

	<modelVersion>4.0.0</modelVersion>
	<groupId>net.sf.gwt-widget</groupId>
	<artifactId>gwt-sl</artifactId>
	<packaging>jar</packaging>

	<name>SL for GWT</name>
	<url>http://code.google.com/p/gwt-sl/</url>
	<scm>
		<connection>scm:svn:http://gwt-sl.googlecode.com/svn/tags/1.3_RC1</connection>
		<developerConnection>scm:svn:https://gwt-sl.googlecode.com/svn/tags/1.3_RC1</developerConnection>
		<url>http://code.google.com/p/gwt-sl/source/browse/</url>
	</scm>
	<version>1.3-RC1</version>
	<description>
		The Server Library for GWT is a collection of Java server side components for the Google Web Toolkit AJAX framework with the focus on the Spring framework by facilitating publishing of Spring beans as RPC services with support for Hibernate-managed entities.
	</description>
	<issueManagement>
		<system>Google Code</system>
		<url>http://code.google.com/p/gwt-sl/issues/list</url>
	</issueManagement>
	<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>
        <developers>
            <developer>
              <id>george</id>
              <name>George Georgovassilis</name>
              <email>g.georgovassilis@gmail.com</email>
              <roles>
                <role>architect</role>
                <role>developer</role>
                <role>owner</role>
              </roles>
            </developer>
        </developers>

	<dependencies>

		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>${slf4j.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>hsqldb</groupId>
			<artifactId>hsqldb</artifactId>
			<version>${hsqldb.version}</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>aspectjweaver</artifactId>
			<version>${aspectj.version}</version>
			<scope>test</scope>
		</dependency>

		<!--  GWT dependencies (from central repo) -->
		<dependency>
			<groupId>com.google.gwt</groupId>
			<artifactId>gwt-servlet</artifactId>
			<version>${gwt.version}</version>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<groupId>com.google.gwt</groupId>
			<artifactId>gwt-user</artifactId>
			<version>${gwt.version}</version>
			<scope>provided</scope>
		</dependency>
		<!-- other dependencies go here -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-jdbc</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-webmvc</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-test</artifactId>
			<version>${spring.version}</version>
			<scope>test</scope>
		</dependency>
                <dependency>
                    <groupId>cglib</groupId>
                    <artifactId>cglib-nodep</artifactId>
                    <version>${cglib.version}</version>
                </dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.0.2</version>
				<configuration>
					<source>${maven.compiler.source}</source>
					<target>${maven.compiler.target}</target>
				</configuration>
			</plugin>
		      <plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-surefire-plugin</artifactId>
			<version>2.8.1</version>
			<configuration>
			  <excludes>
			    <exclude>**/TestResourceLoader.java</exclude>
			  </excludes>
			</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>

                        <plugin>
                          <groupId>org.apache.maven.plugins</groupId>
                          <artifactId>maven-gpg-plugin</artifactId>
                          <executions>
                            <execution>
                              <id>sign-artifacts</id>
                              <phase>verify</phase>
                              <goals>
                                <goal>sign</goal>
                              </goals>
                            </execution>
                          </executions>
                        </plugin>

		</plugins>
	</build>

	<properties>
		<slf4j.version>1.5.10</slf4j.version>
		<hsqldb.version>1.8.0.10</hsqldb.version>
		<aspectj.version>1.6.2</aspectj.version>
		<junit.version>4.4</junit.version>
		<gwt.version>2.1.1</gwt.version>
		<spring.version>3.0.5.RELEASE</spring.version>
		<cglib.version>2.1_3</cglib.version>
		<maven.compiler.source>1.5</maven.compiler.source>
		<maven.compiler.target>1.5</maven.compiler.target>
	</properties>

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
</project>

POM Entry

<dependency>
   <groupId>net.sf.gwt-widget</groupId>
   <artifactId>gwt-sl</artifactId>
   <version>1.3</version>
</dependency>

Download

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



Download gwt-sl-1.3.jar file




PreviousNext

Related