[SCM] librobert-hooke-clojure packaging branch, master, updated. debian/1.1.2-1-18-g52cacab
Wolodja Wentland
debian at babilen5.org
Thu May 23 15:45:38 UTC 2013
The following commit has been merged in the master branch:
commit 3cf84b9d4e565a61d1f03fdd1f9ff6d58cba17a0
Author: Wolodja Wentland <debian at babilen5.org>
Date: Thu May 23 10:46:20 2013 +0100
Use maven-repo-helper to deploy jars
We use maven-repo-helper to deploy jars into a local Debian repository, which
enables us to use this repository for dependency resolution during local
builds.
diff --git a/debian/control b/debian/control
index 0124df1..0754a32 100644
--- a/debian/control
+++ b/debian/control
@@ -8,6 +8,7 @@ Uploaders:
Build-Depends:
debhelper (>= 9),
javahelper (>= 0.32),
+ maven-repo-helper (>= 1.7),
default-jdk,
clojure1.4,
libtext-markdown-perl | markdown
diff --git a/debian/librobert-hooke-clojure.poms b/debian/librobert-hooke-clojure.poms
new file mode 100644
index 0000000..0170acb
--- /dev/null
+++ b/debian/librobert-hooke-clojure.poms
@@ -0,0 +1 @@
+debian/pom.xml --usj-name=hooke
diff --git a/debian/pom.xml b/debian/pom.xml
new file mode 100644
index 0000000..5d86d9b
--- /dev/null
+++ b/debian/pom.xml
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+ <groupId>robert</groupId>
+ <artifactId>hooke</artifactId>
+ <packaging>jar</packaging>
+ <version>1.3.0</version>
+ <name>hooke</name>
+ <description>Hooke your functions!</description>
+ <url>https://github.com/technomancy/robert-hooke</url>
+ <licenses>
+ <license>
+ <name>Eclipse Public License</name>
+ <url>http://www.eclipse.org/legal/epl-v10.html</url>
+ </license>
+ </licenses>
+ <scm>
+ <connection>scm:git:git://github.com/technomancy/robert-hooke.git</connection>
+ <developerConnection>scm:git:ssh://git@github.com/technomancy/robert-hooke.git</developerConnection>
+ <tag>cf6905ee4198c2c43d27274f9d36bdb5ccdc17e7</tag>
+ <url>https://github.com/technomancy/robert-hooke</url>
+ </scm>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <testSourceDirectory>test</testSourceDirectory>
+ <resources>
+ <resource>
+ <directory>resources</directory>
+ </resource>
+ </resources>
+ <testResources>
+ <testResource>
+ <directory>dev-resources</directory>
+ </testResource>
+ <testResource>
+ <directory>resources</directory>
+ </testResource>
+ </testResources>
+ <directory>target</directory>
+ <outputDirectory>target/classes</outputDirectory>
+ </build>
+ <repositories>
+ <repository>
+ <id>central</id>
+ <url>http://repo1.maven.org/maven2/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </repository>
+ <repository>
+ <id>clojars</id>
+ <url>http://releases.clojars.org/repo/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </repository>
+ </repositories>
+ <dependencies>
+ <dependency>
+ <groupId>org.clojure</groupId>
+ <artifactId>clojure</artifactId>
+ <version>1.4.0</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
+
+<!-- This file was autogenerated by Leiningen.
+ Please do not edit it directly; instead edit project.clj and regenerate it.
+ It should not be considered canonical data. For more information see
+ https://github.com/technomancy/leiningen -->
diff --git a/debian/rules b/debian/rules
index b74349c..2c30535 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,7 +7,7 @@ MDWN_DOCS = $(patsubst %.md,%.html,$(wildcard $(CURDIR)/*.md))
PRODUCED_JAR=hooke.jar
%:
- dh $@ --with javahelper
+ dh $@ --with javahelper --with jh_maven_repo_helper
override_jh_build: $(MDWN_DOCS)
jar cf $(PRODUCED_JAR) -C src .
--
librobert-hooke-clojure packaging
More information about the pkg-java-commits
mailing list