[SCM] Spock: testing and specification framework for Java and Groovy applications branch, master, updated. c972e67b19b38b65733bf870325d83f7059d1516

Damien Raude-Morvan drazzib at debian.org
Sun Sep 2 18:30:55 UTC 2012


The following commit has been merged in the master branch:
commit c972e67b19b38b65733bf870325d83f7059d1516
Author: Damien Raude-Morvan <drazzib at debian.org>
Date:   Sun Sep 2 20:10:23 2012 +0200

    Initial import of Debian packaging.

diff --git a/debian/build.xml b/debian/build.xml
new file mode 100644
index 0000000..a0e7faf
--- /dev/null
+++ b/debian/build.xml
@@ -0,0 +1,191 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+spock-0.6-groovy-1.8 build file
+Taken from gil cattaneo <puntogil at libero.it>
+http://pkgs.fedoraproject.org/cgit/spock.git/
+-->
+<project name="build-spock" default="dist" basedir="..">
+      
+   <property name="impl.version" value="0.6-groovy-1.8"/>
+      
+   <property name="core.dir"                   value="${basedir}/spock-core"/>
+   <property name="core.src.dir"               value="${core.dir}/src/main/"/>
+   <property name="core.src.dir.groovy"        value="${core.dir}/src/main/groovy/"/>
+   <property name="core.src.dir.java"          value="${core.dir}/src/main/java/"/>
+   <property name="core.resources.dir"         value="${core.dir}/src/main/resources/"/>
+   <property name="core.build.dir"             value="${core.dir}/build/classes"/>
+      
+   <property name="guice.dir"                  value="${basedir}/spock-guice"/>
+   <property name="guice.src.dir"              value="${guice.dir}/src/main/java"/>
+   <property name="guice.build.dir"            value="${guice.dir}/build/classes"/>
+      
+   <path id="groovyc.classpath">
+    <fileset dir="/usr/share/java" includes="commons-cli.jar"/>
+    <fileset dir="/usr/share/java" includes="groovy-all.jar"/>
+    <fileset dir="/usr/share/java" includes="asm3-all.jar"/>
+    <fileset dir="/usr/share/java" includes="antlr.jar"/>
+   </path>
+      
+   <path id="core.classpath">
+    <path refid="groovyc.classpath"/>
+    <pathelement location="${core.build.dir}/**"/>
+    <fileset dir="/usr/share/java" includes="ant.jar"/>
+    <fileset dir="/usr/share/java" includes="cglib.jar"/>
+    <fileset dir="/usr/share/java" includes="hamcrest-core.jar"/>
+    <fileset dir="/usr/share/java" includes="hamcrest-library.jar"/>
+    <fileset dir="/usr/share/java" includes="junit4.jar"/>
+    <fileset dir="/usr/share/java" includes="objenesis.jar"/>
+   </path>
+      
+   <path id="guice.classpath">
+    <path refid="groovyc.classpath"/>
+    <pathelement location="${core.build.dir}/**"/>
+    <fileset dir="${core.dir}/build/libs" includes="spock-core-${impl.version}.jar"/>
+    <fileset dir="/usr/share/java" includes="aopalliance.jar"/>
+    <fileset dir="/usr/share/java" includes="guice.jar"/>
+   </path>
+      
+   <path id="javadoc.classpath">
+    <path refid="groovyc.classpath"/>
+    <fileset dir="${core.dir}/build/libs" includes="spock-core-${impl.version}.jar"/>
+    <fileset dir="${guice.dir}/build/libs" includes="spock-guice-${impl.version}.jar"/>
+    <fileset dir="/usr/share/java" includes="ant.jar"/>
+    <fileset dir="/usr/share/java" includes="aopalliance.jar"/>
+    <fileset dir="/usr/share/java" includes="cglib.jar"/>
+    <fileset dir="/usr/share/java" includes="guice.jar"/>
+    <fileset dir="/usr/share/java" includes="hamcrest-core.jar"/>
+    <fileset dir="/usr/share/java" includes="hamcrest-library.jar"/>
+    <fileset dir="/usr/share/java" includes="junit4.jar"/>
+    <fileset dir="/usr/share/java" includes="objenesis.jar"/>
+   </path>
+      
+   <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc"  classpathref="groovyc.classpath"/>
+      
+   <target name="clean">
+    <delete dir="${guice.build.dir}"/>
+    <delete dir="${core.build.dir}"/>
+    <delete dir="dist"/>
+   </target>
+      
+   <target name="init">
+     <mkdir dir="dist"/>
+   </target>
+      
+   <target name="build" 
+      depends="build.core,build.guice" description="Compile the sources">
+   </target>
+      
+   <target name="build.core" description="Build Spock Core">
+    <compile-groovy
+      buildclasspath="core.classpath"
+      dirsrc="${core.src.dir}"
+      destfile="${core.build.dir}">
+      </compile-groovy>
+    <mkdir dir="${core.build.dir}/META-INF/services"/>
+    <copy todir="${core.build.dir}/META-INF/services" overwrite="true">
+      <fileset dir="${core.resources.dir}/META-INF/services" includes="**/org.*"/>
+    </copy>
+      
+    <jar-and-manifest
+      basedir="${core.build.dir}"
+      destfile="core"
+      dest="${core.dir}/build/libs"
+      resources=""
+      cpath=""/>
+   </target>
+      
+   <target name="build.guice" description="Build Spock Guice">
+    <compile-javac
+      buildclasspath="guice.classpath"
+      dirsrc="${guice.src.dir}"
+      destfile="${guice.build.dir}"/>
+      
+    <jar-and-manifest
+      basedir="${guice.build.dir}"
+      destfile="guice"
+      dest="${guice.dir}/build/libs"
+      resources=""
+      cpath=""/>
+   </target>
+      
+   <macrodef name="compile-groovy">
+    <attribute name="destfile"/>
+    <attribute name="dirsrc"/>
+    <attribute name="excludes" default=""/>
+    <attribute name="includes" default=""/>
+    <attribute name="buildclasspath" default=""/>
+    <sequential>
+    <mkdir dir="@{destfile}"/>
+      <groovyc
+        srcdir="@{dirsrc}"
+        destdir="@{destfile}"
+        classpathref="@{buildclasspath}">
+        <javac source="1.5" target="1.5" debug="on"/>
+      </groovyc>
+    </sequential>
+   </macrodef>
+      
+   <macrodef name="compile-javac">
+    <attribute name="destfile"/>
+    <attribute name="dirsrc"/>
+    <attribute name="excludes" default=""/>
+    <attribute name="includes" default=""/>
+    <attribute name="buildclasspath" default=""/>
+    <sequential>
+    <mkdir dir="@{destfile}"/>
+      <javac
+        srcdir="@{dirsrc}"
+        destdir="@{destfile}"
+        classpathref="@{buildclasspath}"
+        source="1.5" target="1.5" debug="on">
+      </javac>
+    </sequential>
+   </macrodef>
+      
+   <macrodef name="jar-and-manifest">
+    <attribute name="destfile"/>
+    <attribute name="basedir"/>
+    <attribute name="dest"/>
+    <attribute name="cpath" default=""/>
+    <attribute name="excludes" default=""/>
+    <attribute name="includes" default="**/*"/>
+    <attribute name="resources" default=""/>
+    <attribute name="param" default=""/>
+    <attribute name="paramvalue" default=""/>
+    <sequential>
+      <jar destfile="@{dest}/spock-@{destfile}-${impl.version}.jar"
+        basedir="@{basedir}"
+        excludes="@{excludes}"
+        includes="@{includes}">
+      </jar>
+    </sequential>
+   </macrodef>
+      
+  <target name="dist" depends="init,build,javadoc"
+        description="generate the distribution" >
+  </target>
+      
+  <target name="javadoc">
+    <mkdir dir="dist/api"/>
+    <tstamp>
+      <format property="year" pattern="yyyy" />
+    </tstamp>
+    <javadoc
+      destdir="dist/api"
+      sourcepath="${core.src.dir.java}:${guice.src.dir}"
+      access="protected"
+      old="false"
+      verbose="false"
+      version="true"
+      use="true"
+      author="true"
+      windowtitle="Spock Framework ${impl.version}">
+      <classpath refid="javadoc.classpath"/>
+      <doctitle><![CDATA[<h2>Spock Framework ${impl.version}</h2>]]></doctitle>
+      <bottom><![CDATA[<i>Copyright © ${year}. All rights reserved</i>]]></bottom>
+      <group title="Spock Core" packages="spock.config,spock.lang,spock.util.concurrent,spock.util.matcher,spock.util.mop,org.spockframework.builder,org.spockframework.buildsupport,org.spockframework.buildsupport.ant,org.spockframework.compiler,org.spockframework.compiler.model,org.spockframework.gentyref,org.spockframework.lang,org.spockframework.mock,org.spockframework.runtime,org.spockframework.runtime.condition,org.spockframework.runtime.extension,org.spockframework.runtime.extension.builtin,org.spockframework.runtime.model,org.spockframework.util,org.spockframework.util.inspector"/>
+      <group title="Spock Guice" packages="spock.guice,org.spockframework.guice"/>
+    </javadoc>
+  </target>
+      
+</project>
\ No newline at end of file
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f9414a0
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+spock (0.6-groovy-1.8-1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #607388)
+
+ -- Damien Raude-Morvan <drazzib at debian.org>  Sun, 02 Sep 2012 12:38:23 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2bc16fc
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,54 @@
+Source: spock
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Damien Raude-Morvan <drazzib at debian.org>
+Build-Depends: ant, debhelper (>= 9), default-jdk
+Build-Depends-Indep: groovy,
+                     junit4,
+                     libaopalliance-java,
+                     libasm3-java,
+                     libcglib-java,
+                     libguice-java,
+                     libhamcrest-java,
+                     libobjenesis-java,
+                     maven-repo-helper (>= 1.5~)
+Standards-Version: 3.9.3
+Homepage: http://code.google.com/p/spock/
+Vcs-Git: git://git.debian.org/git/pkg-java/spock.git
+Vcs-Browser: http://git.debian.org/?p=pkg-java/spock.git
+
+Package: libspock-java
+Architecture: all
+Depends: ant,
+         groovy,
+         junit4,
+         libaopalliance-java,
+         libasm3-java,
+         libcglib-java,
+         libguice-java,
+         libhamcrest-java,
+         libobjenesis-java,
+         ${misc:Depends}
+Description: testing and specification framework for Java and Groovy application
+ Spock is a testing and specification framework for Java and Groovy applications
+ .
+ It provide highly expressive specification language.
+ .
+ Spock is compatible with most IDEs, build tools, and
+ continuous integration servers thanks to its JUnit runner.
+
+Package: libspock-java-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends}
+Suggests: libspock-java
+Description: testing and specification framework for Java and Groovy - Docs
+ Spock is a testing and specification framework for Java and Groovy applications
+ .
+ It provide highly expressive specification language.
+ .
+ Spock is compatible with most IDEs, build tools, and
+ continuous integration servers thanks to its JUnit runner.
+ .
+ This package contains Javadoc API for libspock-java.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..5d10292
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,20 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Spock
+Upstream-Contact: http://code.google.com/p/spock/
+Source: git://github.com/spockframework/spock.git
+
+Files: *
+Copyright: 2008-2012, Peter Niederwieser <pniederw at gmail.com>
+ Copyright 2006-2007, Unitils.org
+License: Apache-2.0
+ On Debian systems, the full text of Apache License
+ version 2 can be found in the file
+ /usr/share/common-licenses/Apache-2.
+
+Files: debian/*
+Copyright: 2012, Damien Raude-Morvan <drazzib at debian.org>
+ 2012, gil cattaneo <puntogil at libero.it>
+License: Apache-2.0
+ On Debian systems, the full text of Apache License
+ version 2 can be found in the file
+ /usr/share/common-licenses/Apache-2.
diff --git a/debian/libspock-java-doc.doc-base b/debian/libspock-java-doc.doc-base
new file mode 100644
index 0000000..67af4a3
--- /dev/null
+++ b/debian/libspock-java-doc.doc-base
@@ -0,0 +1,9 @@
+Document: libspock-javadoc
+Title: API Javadoc for libspock-java
+Author: Spock Framework developers
+Abstract: This is the API Javadoc provided by the libspock-java library.
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/libspock-java/api/index.html
+Files: /usr/share/doc/libspock-java/api/*
diff --git a/debian/libspock-java-doc.install b/debian/libspock-java-doc.install
new file mode 100644
index 0000000..531e936
--- /dev/null
+++ b/debian/libspock-java-doc.install
@@ -0,0 +1 @@
+dist/api/* /usr/share/doc/libspock-java/api/
diff --git a/debian/libspock-java.poms b/debian/libspock-java.poms
new file mode 100644
index 0000000..c6814e1
--- /dev/null
+++ b/debian/libspock-java.poms
@@ -0,0 +1,29 @@
+# List of POM files for the package
+# Format of this file is:
+# <path to pom file> [option]*
+# where option can be:
+#   --ignore: ignore this POM and its artifact if any
+#   --ignore-pom: don't install the POM. To use on POM files that are created
+#     temporarily for certain artifacts such as Javadoc jars. [mh_install, mh_installpoms]
+#   --no-parent: remove the <parent> tag from the POM
+#   --package=<package>: an alternative package to use when installing this POM
+#      and its artifact
+#   --has-package-version: to indicate that the original version of the POM is the same as the upstream part
+#      of the version for the package.
+#   --keep-elements=<elem1,elem2>: a list of XML elements to keep in the POM
+#      during a clean operation with mh_cleanpom or mh_installpom
+#   --artifact=<path>: path to the build artifact associated with this POM,
+#      it will be installed when using the command mh_install. [mh_install]
+#   --java-lib: install the jar into /usr/share/java to comply with Debian
+#      packaging guidelines
+#   --usj-name=<name>: name to use when installing the library in /usr/share/java
+#   --usj-version=<version>: version to use when installing the library in /usr/share/java
+#   --no-usj-versionless: don't install the versionless link in /usr/share/java
+#   --dest-jar=<path>: the destination for the real jar.
+#     It will be installed with mh_install. [mh_install]
+#   --classifier=<classifier>: Optional, the classifier for the jar. Empty by default.
+#   --site-xml=<location>: Optional, the location for site.xml if it needs to be installed.
+#     Empty by default. [mh_install]
+#
+debian/spock-core.pom --has-package-version --artifact=spock-core/build/libs/spock-core-*-groovy-1.8.jar --java-lib
+debian/spock-guice.pom --has-package-version --artifact=spock-guice/build/libs/spock-guice-*-groovy-1.8.jar --java-lib
diff --git a/debian/maven.cleanIgnoreRules b/debian/maven.cleanIgnoreRules
new file mode 100644
index 0000000..d9825b6
--- /dev/null
+++ b/debian/maven.cleanIgnoreRules
@@ -0,0 +1,17 @@
+# Maven clean ignore rules - ignore some Maven dependencies and plugins
+# during the clean phase of a Maven build
+# Format of this file is:
+# [group] [artifact] [type] [version] [classifier] [scope]
+# where each element can be either
+# - the exact string, for example org.apache for the group, or 3.1
+#   for the version. In this case, the element is simply matched
+#   and left as it is
+# - * (the star character, alone). In this case, anything will
+#   match and be left as it is. For example, using * on the
+#  position of the artifact field will match any artifact id
+# All elements much match before a rule can be applied
+# Example rule: match jar with groupid= junit, artifactid= junit
+# and version starting with 3., this dependency is then removed
+# from the POM before mvn clean is called
+#   junit junit jar s/3\..*/3.x/
+
diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules
new file mode 100644
index 0000000..33577e8
--- /dev/null
+++ b/debian/maven.ignoreRules
@@ -0,0 +1,16 @@
+# Maven ignore rules - ignore some Maven dependencies and plugins
+# Format of this file is:
+# [group] [artifact] [type] [version] [classifier] [scope]
+# where each element can be either
+# - the exact string, for example org.apache for the group, or 3.1
+#   for the version. In this case, the element is simply matched
+#   and left as it is
+# - * (the star character, alone). In this case, anything will
+#   match and be left as it is. For example, using * on the
+#  position of the artifact field will match any artifact id
+# All elements much match before a rule can be applied
+# Example rule: match jar with groupid= junit, artifactid= junit
+# and version starting with 3., this dependency is then removed
+# from the POM
+#   junit junit jar s/3\..*/3.x/
+
diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules
new file mode 100644
index 0000000..77aa245
--- /dev/null
+++ b/debian/maven.publishedRules
@@ -0,0 +1,19 @@
+# Maven published rules - additional rules to publish, to help
+# the packaging work of Debian maintainers using mh_make
+# Format of this file is:
+# [group] [artifact] [type] [version] [classifier] [scope]
+# where each element can be either
+# - the exact string, for example org.apache for the group, or 3.1
+#   for the version. In this case, the element is simply matched
+#   and left as it is
+# - * (the star character, alone). In this case, anything will
+#   match and be left as it is. For example, using * on the
+#  position of the artifact field will match any artifact id
+# - a regular expression of the form s/match/replace/
+#   in this case, elements that match are transformed using
+#   the regex rule.
+# All elements much match before a rule can be applied
+# Example rule: match jar with groupid= junit, artifactid= junit
+# and version starting with 3., replacing the version with 3.x
+#   junit junit jar s/3\..*/3.x/
+
diff --git a/debian/maven.rules b/debian/maven.rules
new file mode 100644
index 0000000..0b5d5ef
--- /dev/null
+++ b/debian/maven.rules
@@ -0,0 +1,18 @@
+# Maven rules - transform Maven dependencies and plugins
+# Format of this file is:
+# [group] [artifact] [type] [version] [classifier] [scope]
+# where each element can be either
+# - the exact string, for example org.apache for the group, or 3.1
+#   for the version. In this case, the element is simply matched
+#   and left as it is
+# - * (the star character, alone). In this case, anything will
+#   match and be left as it is. For example, using * on the
+#  position of the artifact field will match any artifact id
+# - a regular expression of the form s/match/replace/
+#   in this case, elements that match are transformed using
+#   the regex rule.
+# All elements much match before a rule can be applied
+# Example rule: match jar with groupid= junit, artifactid= junit
+# and version starting with 3., replacing the version with 3.x
+#   junit junit jar s/3\..*/3.x/
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..10d9503
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+export JAVA_HOME := /usr/lib/jvm/default-java
+export ANT_ARGS=-f debian/build.xml
+VERSION=$(shell dpkg-parsechangelog | sed -n '/^Version/s/Version: \(.*\)-[^-]*$$/\1/p')
+
+%:
+	dh $@ --buildsystem=ant --with maven_repo_helper
+
+get-orig-source:
+	uscan --force-download
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/spock-core.pom b/debian/spock-core.pom
new file mode 100644
index 0000000..46108a1
--- /dev/null
+++ b/debian/spock-core.pom
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.spockframework</groupId>
+  <artifactId>spock-core</artifactId>
+  <version>0.6-groovy-1.8</version>
+  <name>Spock Framework - Core Module</name>
+  <description>Spock is a testing and specification framework for Java and Groovy applications. What makes it stand out from the crowd is its beautiful and highly expressive specification language. Thanks to its JUnit runner, Spock is compatible with most IDEs, build tools, and continuous integration servers. Spock is inspired from JUnit, jMock, RSpec, Groovy, Scala, Vulcans, and other fascinating life forms.</description>
+  <url>http://spockframework.org</url>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>pniederw</id>
+      <name>Peter Niederwieser</name>
+      <email>pniederw at gmail.com</email>
+    </developer>
+    <developer>
+      <id>ldaley</id>
+      <name>Luke Daley</name>
+      <email>ld at ldaley.com</email>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:git://github.com/spockframework/spock.git</connection>
+    <developerConnection>scm:git:ssh://git@github.com/spockframework/spock.git</developerConnection>
+    <url>http://github.spockframework.org/spock</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <version>1.2</version>
+      <scope>compile</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit-dep</artifactId>
+      <version>4.9</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-all</artifactId>
+      <version>1.8.5</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.8.2</version>
+      <scope>compile</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>asm</groupId>
+      <artifactId>asm</artifactId>
+      <version>3.2</version>
+      <scope>compile</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>cglib</groupId>
+      <artifactId>cglib-nodep</artifactId>
+      <version>2.2</version>
+      <scope>compile</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest-core</artifactId>
+      <version>1.2</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file
diff --git a/debian/spock-guice.pom b/debian/spock-guice.pom
new file mode 100644
index 0000000..3585ba6
--- /dev/null
+++ b/debian/spock-guice.pom
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.spockframework</groupId>
+  <artifactId>spock-guice</artifactId>
+  <version>0.6-groovy-1.8</version>
+  <name>Spock Framework - Guice Module</name>
+  <description>Spock's Guice Module provides support for testing Guice 2/3 based applications.</description>
+  <url>http://spockframework.org</url>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>pniederw</id>
+      <name>Peter Niederwieser</name>
+      <email>pniederw at gmail.com</email>
+    </developer>
+    <developer>
+      <id>ldaley</id>
+      <name>Luke Daley</name>
+      <email>ld at ldaley.com</email>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:git://github.com/spockframework/spock.git</connection>
+    <developerConnection>scm:git:ssh://git@github.com/spockframework/spock.git</developerConnection>
+    <url>http://github.spockframework.org/spock</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>org.spockframework</groupId>
+      <artifactId>spock-core</artifactId>
+      <version>0.6-groovy-1.8</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.inject</groupId>
+      <artifactId>guice</artifactId>
+      <version>3.0</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..116526b
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://githubredir.debian.net/github/spockframework/spock /spock-(.*).tar.gz

-- 
Spock: testing and specification framework for Java and Groovy applications



More information about the pkg-java-commits mailing list