From 0721db56a70c397de18c45450e1f820f3873bc97 Mon Sep 17 00:00:00 2001 From: Grzegorz Slowikowski Date: Mon, 27 Feb 2012 09:55:31 +0100 Subject: [PATCH 1/5] Mavenization --- .gitignore | 3 +- assembly-dist.xml | 80 ++++++++++++++++++++++++++++ pom.xml | 130 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 212 insertions(+), 1 deletion(-) create mode 100644 assembly-dist.xml create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore index 3ca2848..91315c3 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ dist *.eml *.iml -targets \ No newline at end of file +targets +target \ No newline at end of file diff --git a/assembly-dist.xml b/assembly-dist.xml new file mode 100644 index 0000000..1b69a05 --- /dev/null +++ b/assembly-dist.xml @@ -0,0 +1,80 @@ + + + + + + dist + + + zip + + + false + false + + + + ${basedir} + + + app/** + conf/** + documentation/** + src/** + assembly-dist.xml + pom.xml + + + documentation/api/** + + + + + ${project.build.directory}/apidocs + documentation/api + + + + + + ${project.build.directory}/manifest + + + + + + lib + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..71ba341 --- /dev/null +++ b/pom.xml @@ -0,0 +1,130 @@ + + + + + + + + com.google.code.maven-play-plugin + play-module-default-parent + 1.0.0-alpha6 + + + 4.0.0 + com.github.greenlaw110.play-rythm + play-rythm + 0.9-SNAPSHOT + jar + + Play! Rythm Module + Play! Rythm Module + http://www.playframework.org/modules/play-rythm + + + + com.google.code.maven-play-plugin + Maven Play Plugin - releases + http://maven-play-plugin.googlecode.com/svn/mavenrepo/releases + + false + + + + com.google.code.maven-play-plugin-snapshots + Maven Play Plugin - snapshots + http://maven-play-plugin.googlecode.com/svn/mavenrepo/snapshots + + false + + + + + + Play + Rythm module + 1.2.2 + + 1.2.2 + + + + + com.google.code.maven-play-plugin.org.playframework + play + ${play.version} + provided + + + + com.github.greenlaw110.rythm + rythm + ${project.version} + + + com.google.code.maven-play-plugin.org.eclipse.jdt + org.eclipse.jdt.core + + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + http://download.oracle.com/javase/6/docs/api/ + http://www.playframework.org/documentation/api/${play.version}/ + + + + + + + + + dist + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + make-assembly + + false + + ${basedir}/assembly-dist.xml + + + + + + + + + + + From 4639ade9e28874a85da73b8ea3d979e62f062f91 Mon Sep 17 00:00:00 2001 From: Grzegorz Slowikowski Date: Mon, 27 Feb 2012 09:59:52 +0100 Subject: [PATCH 2/5] Unused files removed. --- build.bat | 2 -- build.xml | 40 ---------------------------------------- lib | 1 - 3 files changed, 43 deletions(-) delete mode 100644 build.bat delete mode 100644 build.xml delete mode 120000 lib diff --git a/build.bat b/build.bat deleted file mode 100644 index 5fc3cab..0000000 --- a/build.bat +++ /dev/null @@ -1,2 +0,0 @@ -call ant -Dplay.path=j:/play -rem xcopy /y lib\* J:\play\modules\morphia\lib \ No newline at end of file diff --git a/build.xml b/build.xml deleted file mode 100644 index cd8f100..0000000 --- a/build.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-
- -
- -
diff --git a/lib b/lib deleted file mode 120000 index a0e009a..0000000 --- a/lib +++ /dev/null @@ -1 +0,0 @@ -/c/w/_lgl/rythm/lib \ No newline at end of file From a08f1e1fd91a49191f62cc969ae31fc47a5afa01 Mon Sep 17 00:00:00 2001 From: Grzegorz Slowikowski Date: Mon, 27 Feb 2012 10:06:32 +0100 Subject: [PATCH 3/5] Distribution assembly actualization after upstream version update. --- assembly-dist.xml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/assembly-dist.xml b/assembly-dist.xml index 1b69a05..523b094 100644 --- a/assembly-dist.xml +++ b/assembly-dist.xml @@ -45,21 +45,17 @@ under the License. documentation/api/** - ${project.build.directory}/apidocs documentation/api From 1f8e53fb5397c7a3ccbc2fccfdb7aa4cf3020cd7 Mon Sep 17 00:00:00 2001 From: Grzegorz Slowikowski Date: Mon, 27 Feb 2012 12:58:47 +0100 Subject: [PATCH 4/5] Changes reflecting changes in "rythm" dependency. --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 71ba341..d8345d6 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,7 @@ under the License. 4.0.0 com.github.greenlaw110.play-rythm play-rythm - 0.9-SNAPSHOT + 0.9.5-SNAPSHOT jar Play! Rythm Module @@ -73,9 +73,9 @@ under the License. - com.github.greenlaw110.rythm + com.rythmengine rythm - ${project.version} + 0.9.1-SNAPSHOT com.google.code.maven-play-plugin.org.eclipse.jdt From 936e1cb208a0d268a28da93915c37a5a75d8297c Mon Sep 17 00:00:00 2001 From: Grzegorz Slowikowski Date: Sun, 17 Jun 2012 18:56:39 +0200 Subject: [PATCH 5/5] Updated mavenizatrion. --- assembly-dist.xml | 4 ++++ pom.xml | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/assembly-dist.xml b/assembly-dist.xml index 523b094..a86c033 100644 --- a/assembly-dist.xml +++ b/assembly-dist.xml @@ -39,7 +39,9 @@ under the License. documentation/** src/** assembly-dist.xml + LICENSE.txt pom.xml + README.txt documentation/api/** @@ -49,11 +51,13 @@ under the License. ${basedir}/samples-and-tests samples-and-tests + */README */README.txt */app/** */conf/** */public/** */test/** + */war/** diff --git a/pom.xml b/pom.xml index d8345d6..b862ab4 100644 --- a/pom.xml +++ b/pom.xml @@ -24,13 +24,13 @@ under the License. com.google.code.maven-play-plugin play-module-default-parent - 1.0.0-alpha6 + 1.0.0-beta1 4.0.0 com.github.greenlaw110.play-rythm play-rythm - 0.9.5-SNAPSHOT + 1.0.0-SNAPSHOT jar Play! Rythm Module @@ -75,7 +75,7 @@ under the License. com.rythmengine rythm - 0.9.1-SNAPSHOT + 1.0.0-20120617 com.google.code.maven-play-plugin.org.eclipse.jdt