Download objectify-gwt-1.2.1.jar file

Introduction

You can download objectify-gwt-1.2.1.jar in this page.

License

MIT License

Type List

objectify-gwt-1.2.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.googlecode.objectify/objectify-gwt/pom.properties
META-INF/maven/com.googlecode.objectify/objectify-gwt/pom.xml
com.google.appengine.api.datastore.Cursor_CustomFieldSerializer.class
com.google.appengine.api.datastore.Cursor_CustomFieldSerializer.java
com.google.appengine.api.datastore.EntityNotFoundException_CustomFieldSerializer.class
com.google.appengine.api.datastore.EntityNotFoundException_CustomFieldSerializer.java
com.google.appengine.api.datastore.Key_CustomFieldSerializer.class
com.google.appengine.api.datastore.Key_CustomFieldSerializer.java
com.google.appengine.api.users.User_CustomFieldSerializer.class
com.google.appengine.api.users.User_CustomFieldSerializer.java
com.google.appengine.super.com.google.appengine.api.datastore.AppIdNamespace.java
com.google.appengine.super.com.google.appengine.api.datastore.Blob.java
com.google.appengine.super.com.google.appengine.api.datastore.Category.java
com.google.appengine.super.com.google.appengine.api.datastore.Cursor.java
com.google.appengine.super.com.google.appengine.api.datastore.DataTypeUtils.java
com.google.appengine.super.com.google.appengine.api.datastore.Email.java
com.google.appengine.super.com.google.appengine.api.datastore.EntityNotFoundException.java
com.google.appengine.super.com.google.appengine.api.datastore.GeoPt.java
com.google.appengine.super.com.google.appengine.api.datastore.IMHandle.java
com.google.appengine.super.com.google.appengine.api.datastore.Key.java
com.google.appengine.super.com.google.appengine.api.datastore.KeyFactory.java
com.google.appengine.super.com.google.appengine.api.datastore.Key_CustomFieldSerializer.java
com.google.appengine.super.com.google.appengine.api.datastore.Link.java
com.google.appengine.super.com.google.appengine.api.datastore.PhoneNumber.java
com.google.appengine.super.com.google.appengine.api.datastore.PostalAddress.java
com.google.appengine.super.com.google.appengine.api.datastore.Rating.java
com.google.appengine.super.com.google.appengine.api.datastore.ShortBlob.java
com.google.appengine.super.com.google.appengine.api.datastore.Text.java
com.google.appengine.super.com.google.appengine.api.users.User.java
com.google.appengine.super.com.google.apphosting.api.NamespaceResources.java
com.googlecode.objectify.impl.ref.LiveRef_CustomFieldSerializer.class
com.googlecode.objectify.super.com.googlecode.objectify.Key.java
com.googlecode.objectify.super.com.googlecode.objectify.NotFoundException.java
com.googlecode.objectify.super.com.googlecode.objectify.Ref.java
com.googlecode.objectify.super.com.googlecode.objectify.impl.ref.LiveRef.java
com.googlecode.objectify.super.com.googlecode.objectify.impl.ref.LiveRef_CustomFieldSerializer.java
com/google/appengine/AppEngine.gwt.xml
com/googlecode/objectify/Objectify.gwt.xml

Pom

objectify-gwt-1.2.1.pom file content.

<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>

	<properties>
		<gae.version>1.9.5</gae.version>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<groupId>com.googlecode.objectify</groupId>
	<artifactId>objectify-gwt</artifactId>
	<version>1.2.1</version>

	<name>Objectify GWT</name>
	<description>Use Google App Engine datastore and Objectify classes with GWT</description>
	<packaging>jar</packaging>
	<url>http://code.google.com/p/objectify-gwt/</url>
	<scm>
		<url>scm:git:https://code.google.com/p/objectify-gwt/</url>
	</scm>
	<licenses>
		<license>
			<name>MIT License</name>
			<url>http://www.opensource.org/licenses/mit-license.php</url>
		</license>
	</licenses>
	<developers>
		<developer>
			<id>jeff</id>
			<name>Jeff Schnitzer</name>
			<email>jeff@infohazard.org</email>
		</developer>
	</developers>

	<distributionManagement>
		<snapshotRepository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>ossrh</id>
			<name>Nexus Release Repository</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>


	<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>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>

	<build>
		<resources>
			<resource>
				<directory>src/main/java</directory>
				<includes>
					<include>**/NotFoundException.java</include>
					<include>**/*_CustomFieldSerializer.java</include>
				</includes>
				<excludes>
					<!-- We have a special way of doing this on client, pulled in as a normal resource -->
					<exclude>com/googlecode/objectify/impl/ref/LiveRef_CustomFieldSerializer.java</exclude>
				</excludes>
			</resource>
			<resource>
				<directory>src/main/resources</directory>
			</resource>
		</resources>

		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.0</version>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.2.1</version>
				<executions>
					<execution>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.9.1</version>
				<executions>
					<execution>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.sonatype.plugins</groupId>
				<artifactId>nexus-staging-maven-plugin</artifactId>
				<version>1.6.2</version>
				<extensions>true</extensions>
				<configuration>
					<serverId>ossrh</serverId>
					<nexusUrl>https://oss.sonatype.org/</nexusUrl>
					<autoReleaseAfterClose>true</autoReleaseAfterClose>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<!-- Mandatory -->
		<dependency>
			<groupId>com.googlecode.objectify</groupId>
			<artifactId>objectify</artifactId>
			<version>5.0.3</version>
		</dependency>

		<!-- GWT -->
		<dependency>
			<groupId>com.google.gwt</groupId>
			<artifactId>gwt-user</artifactId>
			<version>2.6.1</version>
			<scope>compile</scope>
			<optional>true</optional>
		</dependency>

		<!-- Google App Engine -->
		<dependency>
			<groupId>com.google.appengine</groupId>
			<artifactId>appengine-api-1.0-sdk</artifactId>
			<version>${gae.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>com.google.appengine</groupId>
			<artifactId>appengine-api-labs</artifactId>
			<version>${gae.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>com.google.appengine</groupId>
			<artifactId>appengine-api-stubs</artifactId>
			<version>${gae.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>com.google.appengine</groupId>
			<artifactId>appengine-testing</artifactId>
			<version>${gae.version}</version>
			<scope>test</scope>
		</dependency>

		<!-- Testing -->
		<dependency>
			<groupId>org.testng</groupId>
			<artifactId>testng</artifactId>
			<version>6.8</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<version>1.9.5</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

</project>

POM Entry

<dependency>
   <groupId>com.googlecode.objectify</groupId>
   <artifactId>objectify-gwt</artifactId>
   <version>1.2.1</version>
</dependency>

Download

If you think the following objectify-gwt-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 objectify-gwt-1.2.1.jar file




PreviousNext

Related