Download gwtp-dispatch-rpc-shared-1.2.1.jar file

Introduction

You can download gwtp-dispatch-rpc-shared-1.2.1.jar in this page.

License

Open Source

Type List

gwtp-dispatch-rpc-shared-1.2.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.gwtplatform/gwtp-dispatch-rpc-shared/pom.properties
META-INF/maven/com.gwtplatform/gwtp-dispatch-rpc-shared/pom.xml
com.gwtplatform.dispatch.rpc.shared.AbstractSimpleResult.class
com.gwtplatform.dispatch.rpc.shared.AbstractSimpleResult.java
com.gwtplatform.dispatch.rpc.shared.AbstractUpdateResult.class
com.gwtplatform.dispatch.rpc.shared.AbstractUpdateResult.java
com.gwtplatform.dispatch.rpc.shared.Action.class
com.gwtplatform.dispatch.rpc.shared.Action.java
com.gwtplatform.dispatch.rpc.shared.ActionImpl.class
com.gwtplatform.dispatch.rpc.shared.ActionImpl.java
com.gwtplatform.dispatch.rpc.shared.BatchAction.class
com.gwtplatform.dispatch.rpc.shared.BatchAction.java
com.gwtplatform.dispatch.rpc.shared.BatchResult.class
com.gwtplatform.dispatch.rpc.shared.BatchResult.java
com.gwtplatform.dispatch.rpc.shared.DispatchAsync.class
com.gwtplatform.dispatch.rpc.shared.DispatchAsync.java
com.gwtplatform.dispatch.rpc.shared.DispatchService.class
com.gwtplatform.dispatch.rpc.shared.DispatchService.java
com.gwtplatform.dispatch.rpc.shared.DispatchServiceAsync.class
com.gwtplatform.dispatch.rpc.shared.DispatchServiceAsync.java
com.gwtplatform.dispatch.rpc.shared.MultipleResult.class
com.gwtplatform.dispatch.rpc.shared.MultipleResult.java
com.gwtplatform.dispatch.rpc.shared.NoResult.class
com.gwtplatform.dispatch.rpc.shared.NoResult.java
com.gwtplatform.dispatch.rpc.shared.Result.class
com.gwtplatform.dispatch.rpc.shared.Result.java
com.gwtplatform.dispatch.rpc.shared.ServiceException.class
com.gwtplatform.dispatch.rpc.shared.ServiceException.java
com.gwtplatform.dispatch.rpc.shared.SimpleResult.class
com.gwtplatform.dispatch.rpc.shared.SimpleResult.java
com.gwtplatform.dispatch.rpc.shared.UnsecuredActionImpl.class
com.gwtplatform.dispatch.rpc.shared.UnsecuredActionImpl.java
com.gwtplatform.dispatch.rpc.shared.UnsupportedActionException.class
com.gwtplatform.dispatch.rpc.shared.UnsupportedActionException.java
com.gwtplatform.dispatch.shared.AbstractSimpleResult.class
com.gwtplatform.dispatch.shared.AbstractSimpleResult.java
com.gwtplatform.dispatch.shared.AbstractUpdateResult.class
com.gwtplatform.dispatch.shared.AbstractUpdateResult.java
com.gwtplatform.dispatch.shared.Action.class
com.gwtplatform.dispatch.shared.Action.java
com.gwtplatform.dispatch.shared.ActionImpl.class
com.gwtplatform.dispatch.shared.ActionImpl.java
com.gwtplatform.dispatch.shared.BatchAction.class
com.gwtplatform.dispatch.shared.BatchAction.java
com.gwtplatform.dispatch.shared.BatchResult.class
com.gwtplatform.dispatch.shared.BatchResult.java
com.gwtplatform.dispatch.shared.DispatchAsync.class
com.gwtplatform.dispatch.shared.DispatchAsync.java
com.gwtplatform.dispatch.shared.DispatchService.class
com.gwtplatform.dispatch.shared.DispatchService.java
com.gwtplatform.dispatch.shared.DispatchServiceAsync.class
com.gwtplatform.dispatch.shared.DispatchServiceAsync.java
com.gwtplatform.dispatch.shared.MultipleResult.class
com.gwtplatform.dispatch.shared.MultipleResult.java
com.gwtplatform.dispatch.shared.NoResult.class
com.gwtplatform.dispatch.shared.NoResult.java
com.gwtplatform.dispatch.shared.Result.class
com.gwtplatform.dispatch.shared.Result.java
com.gwtplatform.dispatch.shared.ServiceException.class
com.gwtplatform.dispatch.shared.ServiceException.java
com.gwtplatform.dispatch.shared.SimpleResult.class
com.gwtplatform.dispatch.shared.SimpleResult.java
com.gwtplatform.dispatch.shared.UnsecuredActionImpl.class
com.gwtplatform.dispatch.shared.UnsecuredActionImpl.java
com.gwtplatform.dispatch.shared.UnsupportedActionException.class
com.gwtplatform.dispatch.shared.UnsupportedActionException.java
com/gwtplatform/dispatch/DispatchShared.gwt.xml
com/gwtplatform/dispatch/rpc/DispatchRpcShared.gwt.xml

Pom

gwtp-dispatch-rpc-shared-1.2.1.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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>com.gwtplatform</groupId>
        <artifactId>gwtp-core</artifactId>
        <version>1.2.1</version>
    </parent>

    <artifactId>gwtp-dispatch-rpc-shared</artifactId>
    <name>GWTP RPC-Dispatch Shared</name>

    <build>
        <resources>
            <!-- Bundle sources with the jar, so they are visible to GWT's
                compiler -->
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.java</include>
                </includes>
            </resource>
            <!-- Bundle module descriptor with the jar, so it is visible
                to GWT's compiler -->
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.Processor</include>
                    <include>**/*.gwt.xml</include>
                </includes>
            </resource>
        </resources>

        <plugins>
            <!-- Disable annotation processors during normal compilation -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <proc>none</proc>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>com.google.gwt</groupId>
            <artifactId>gwt-user</artifactId>
        </dependency>

        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>gwtp-dispatch-common-shared</artifactId>
        </dependency>

        <!-- Needed for @BindingAnnotation in deprecated SecurityCookie. Remove when Security Cookie is removed from
        this project -->
        <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
            <optional>true</optional>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.gwtplatform</groupId>
   <artifactId>gwtp-dispatch-rpc-shared</artifactId>
   <version>1.2.1</version>
</dependency>

Download

If you think the following gwtp-dispatch-rpc-shared-1.2.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download gwtp-dispatch-rpc-shared-1.2.1.jar file




PreviousNext

Related