Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 9 additions & 50 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<name>Objectify GWT</name>
<description>Use Google App Engine datastore and Objectify classes with GWT</description>
<packaging>jar</packaging>
<packaging>gwt-lib</packaging>
<url>http://code.google.com/p/objectify-gwt/</url>
<scm>
<url>scm:git:https://code.google.com/p/objectify-gwt/</url>
Expand Down Expand Up @@ -75,44 +75,17 @@
</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>
<groupId>net.ltgt.gwt.maven</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.0-rc-8</version>
<extensions>true</extensions>
<configuration>
<source>1.7</source>
<target>1.7</target>
<moduleName>com.googlecode.objectify.Objectify</moduleName>
<relocateSuperSource>true</relocateSuperSource>
</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>
Expand Down Expand Up @@ -144,14 +117,14 @@
<dependency>
<groupId>com.googlecode.objectify</groupId>
<artifactId>objectify</artifactId>
<version>5.0.3</version>
<version>5.1.21</version>
</dependency>

<!-- GWT -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>2.6.1</version>
<version>2.8.1</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
Expand Down Expand Up @@ -181,20 +154,6 @@
<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>