Skip to content

Commit

Permalink
0.9 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
nk committed Feb 19, 2013
1 parent 2257957 commit b4c1dfb
Show file tree
Hide file tree
Showing 13 changed files with 140 additions and 4 deletions.
Empty file modified deploy.sh 100644 → 100755
Empty file.
Binary file not shown.
@@ -0,0 +1 @@
fd2ef50056a262306f488e49666b468e
@@ -0,0 +1 @@
3a71fb901b1f7b346ec0bff01e396114cbc930ec
Binary file not shown.
@@ -0,0 +1 @@
d206e2663c92cc5c482ede4feb68974a
@@ -0,0 +1 @@
df54867f02e3a96aa028afe3d57beba6716767ac
129 changes: 129 additions & 0 deletions releases/gr/dsigned/SpringCRUDUtils/0.9/SpringCRUDUtils-0.9.pom
@@ -0,0 +1,129 @@
<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</version>
<packaging>jar</packaging>
<build>
<plugins>
<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 @@
5c19e3288a85a044aace6d2152c00313
@@ -0,0 +1 @@
525e30a49f4bd1a29c04f287dda403bf47aad798
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.8</release>
<release>0.9</release>
<versions>
<version>0.2</version>
<version>0.3</version>
Expand All @@ -12,7 +12,8 @@
<version>0.7</version>
<version>0.7.1</version>
<version>0.8</version>
<version>0.9</version>
</versions>
<lastUpdated>20121019071814</lastUpdated>
<lastUpdated>20130219223624</lastUpdated>
</versioning>
</metadata>
2 changes: 1 addition & 1 deletion releases/gr/dsigned/SpringCRUDUtils/maven-metadata.xml.md5
@@ -1 +1 @@
3784a37b7913806e8f9b4381cc926b93
9757250167e4e60c836846dcfb7d0e25
@@ -1 +1 @@
ef99d26d6bff0ea5b16eaaf1994f8da4e3ad6236
b6b84ce8a192d5cb08656c162412c0213c7a977a

0 comments on commit b4c1dfb

Please sign in to comment.