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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
dist
*.eml
*.iml
targets
targets
target
80 changes: 80 additions & 0 deletions assembly-dist.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

<assembly>
<id>dist</id>

<formats>
<format>zip</format>
</formats>

<includeSiteDirectory>false</includeSiteDirectory>
<includeBaseDirectory>false</includeBaseDirectory>

<fileSets>
<fileSet>
<directory>${basedir}</directory>
<outputDirectory></outputDirectory>
<includes>
<include>app/**</include>
<include>conf/**</include>
<include>documentation/**</include>
<include>src/**</include>
<include>assembly-dist.xml</include>
<include>LICENSE.txt</include>
<include>pom.xml</include>
<include>README.txt</include>
</includes>
<excludes>
<exclude>documentation/api/**</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>${basedir}/samples-and-tests</directory>
<outputDirectory>samples-and-tests</outputDirectory>
<includes>
<include>*/README</include>
<include>*/README.txt</include>
<include>*/app/**</include>
<include>*/conf/**</include>
<include>*/public/**</include>
<include>*/test/**</include>
<include>*/war/**</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.build.directory}/apidocs</directory>
<outputDirectory>documentation/api</outputDirectory>
</fileSet>
</fileSets>

<files>
<file>
<source>${project.build.directory}/manifest</source>
</file>
</files>

<dependencySets>
<dependencySet>
<outputDirectory>lib</outputDirectory>
</dependencySet>
</dependencySets>
</assembly>
5 changes: 0 additions & 5 deletions bm.bat

This file was deleted.

2 changes: 0 additions & 2 deletions build.bat

This file was deleted.

40 changes: 0 additions & 40 deletions build.xml

This file was deleted.

1 change: 0 additions & 1 deletion lib

This file was deleted.

130 changes: 130 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

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

<parent>
<groupId>com.google.code.maven-play-plugin</groupId>
<artifactId>play-module-default-parent</artifactId>
<version>1.0.0-beta1</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>com.github.greenlaw110.play-rythm</groupId>
<artifactId>play-rythm</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Play! Rythm Module</name>
<description>Play! Rythm Module</description>
<url>http://www.playframework.org/modules/play-rythm</url>

<repositories>
<repository>
<id>com.google.code.maven-play-plugin</id>
<name>Maven Play Plugin - releases</name>
<url>http://maven-play-plugin.googlecode.com/svn/mavenrepo/releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>com.google.code.maven-play-plugin-snapshots</id>
<name>Maven Play Plugin - snapshots</name>
<url>http://maven-play-plugin.googlecode.com/svn/mavenrepo/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>

<properties>
<play.manifest.section>Play</play.manifest.section>
<manifest.specification.title>Rythm module</manifest.specification.title>
<play.module.frameworkVersions>1.2.2</play.module.frameworkVersions>

<play.version>1.2.2</play.version>
</properties>

<dependencies>
<dependency>
<groupId>com.google.code.maven-play-plugin.org.playframework</groupId>
<artifactId>play</artifactId>
<version>${play.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.rythmengine</groupId>
<artifactId>rythm</artifactId>
<version>1.0.0-20120617</version>
<exclusions>
<exclusion>
<groupId>com.google.code.maven-play-plugin.org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>


<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>http://download.oracle.com/javase/6/docs/api/</link>
<link>http://www.playframework.org/documentation/api/${play.version}/</link>
</links>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>dist</id>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>${basedir}/assembly-dist.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>