Skip to content

Commit

Permalink
Default json strategy Fixed crossframe bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nk committed Mar 26, 2013
1 parent fe6df12 commit fb782fc
Show file tree
Hide file tree
Showing 12 changed files with 148 additions and 4 deletions.
Binary file not shown.
@@ -0,0 +1 @@
d35f9b158a8ae3fea3b37b03501776db
@@ -0,0 +1 @@
a01410f170e86c1e60bfa2c4fd823217232445f4
Binary file not shown.
@@ -0,0 +1 @@
12826470153a69efc2230ee8f883b875
@@ -0,0 +1 @@
0bcedd4cecccba4a01457fa7c0e79511ba6dad59
137 changes: 137 additions & 0 deletions releases/gr/dsigned/SpringCRUDUtils/0.9.1/SpringCRUDUtils-0.9.1.pom
@@ -0,0 +1,137 @@
<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>
<name>SpringCRUDUtils</name>
<groupId>gr.dsigned</groupId>
<artifactId>SpringCRUDUtils</artifactId>
<version>0.9.1</version>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</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>
</plugins>
</build>
<organization>
<name>dsigned.gr</name>
<url>http://dsigned.gr</url>
</organization>
<url>https://github.com/nikosk/Spring-JPA-Crud-Scaffolding</url>

<issueManagement>
<system>Github.org</system>
<url>https://github.com/nikosk/Spring-JPA-Crud-Scaffolding/issues</url>
</issueManagement>

<scm>
<url>https://github.com/nikosk/Spring-JPA-Crud-Scaffolding</url>
<developerConnection>scm:git:https://nikosk@github.com/nikosk/Spring-JPA-Crud-Scaffolding.git
</developerConnection>
</scm>

<distributionManagement>
<repository>
<id>repo</id>
<url>https://github.com/nikosk/Spring-JPA-Crud-Scaffolding/raw/master/releases</url>
</repository>
</distributionManagement>


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

<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>11.0.1</version>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>1.7.2</version>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>3.1.0.RELEASE</version>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>3.1.0.RELEASE</version>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.2</version>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.1.7.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.0</version>
<scope>test</scope>
<type>jar</type>
</dependency>
</dependencies>
</project>
@@ -0,0 +1 @@
8fff05e0e4d9092e5f9b381756bc4dcd
@@ -0,0 +1 @@
89fd9f03fa487d9f6a2dccc2c5fc1643f3bef059
5 changes: 3 additions & 2 deletions releases/gr/dsigned/SpringCRUDUtils/maven-metadata.xml
Expand Up @@ -3,7 +3,7 @@
<groupId>gr.dsigned</groupId>
<artifactId>SpringCRUDUtils</artifactId>
<versioning>
<release>0.9</release>
<release>0.9.1</release>
<versions>
<version>0.2</version>
<version>0.3</version>
Expand All @@ -13,7 +13,8 @@
<version>0.7.1</version>
<version>0.8</version>
<version>0.9</version>
<version>0.9.1</version>
</versions>
<lastUpdated>20130219223624</lastUpdated>
<lastUpdated>20130326215003</lastUpdated>
</versioning>
</metadata>
2 changes: 1 addition & 1 deletion releases/gr/dsigned/SpringCRUDUtils/maven-metadata.xml.md5
@@ -1 +1 @@
9757250167e4e60c836846dcfb7d0e25
9c1c16f7bcaa7492d43e9ef153a5cab4
@@ -1 +1 @@
b6b84ce8a192d5cb08656c162412c0213c7a977a
5ee56004b0aa89ce2d3169057680d100f416a634

0 comments on commit fb782fc

Please sign in to comment.