[guava-libraries] 04/04: debian/rules: Removed the get-orig-pom target
Emmanuel Bourg
ebourg-guest at alioth.debian.org
Wed Sep 11 09:52:24 UTC 2013
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository guava-libraries.
commit dd93d6243be193a9e4bc1e1496e4afe4856cdc4b
Author: Emmanuel Bourg <ebourg at apache.org>
Date: Wed Sep 11 11:49:31 2013 +0200
debian/rules: Removed the get-orig-pom target
---
debian/changelog | 1 +
debian/pom.xml | 156 ------------------------------------------------------
debian/rules | 4 --
3 files changed, 1 insertion(+), 160 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index f246218..36a2429 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ guava-libraries (14.0.1-2) UNRELEASED; urgency=low
http://guava-libraries.googlecode.com/archive/v<VERSION>.zip
instead of the sources jar from Maven central
* Build depend on debhelper 9
+ * debian/rules: Removed the get-orig-pom target
-- Emmanuel Bourg <ebourg at apache.org> Wed, 26 Jun 2013 19:17:42 +0200
diff --git a/debian/pom.xml b/debian/pom.xml
deleted file mode 100644
index 32e6b76..0000000
--- a/debian/pom.xml
+++ /dev/null
@@ -1,156 +0,0 @@
-<?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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.google.guava</groupId>
- <artifactId>guava-parent</artifactId>
- <version>14.0.1</version>
- </parent>
- <artifactId>guava</artifactId>
- <name>Guava: Google Core Libraries for Java</name>
- <packaging>bundle</packaging>
- <description>
- Guava is a suite of core and expanded libraries that include
- utility classes, google's collections, io classes, and much
- much more.
-
- Guava has two code dependencies - javax.annotation
- per the JSR-305 spec and javax.inject per the JSR-330 spec.
- </description>
- <dependencies>
- <dependency>
- <groupId>com.google.code.findbugs</groupId>
- <artifactId>jsr305</artifactId>
- <version>1.3.9</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.inject</groupId>
- <artifactId>javax.inject</artifactId>
- <version>1</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>2.3.7</version>
- <extensions>true</extensions>
- <executions>
- <execution>
- <id>bundle-manifest</id>
- <phase>process-classes</phase>
- <goals>
- <goal>manifest</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <instructions>
- <Export-Package>!com.google.common.base.internal,com.google.common.*</Export-Package>
- <Import-Package>
- javax.annotation;resolution:=optional,
- javax.inject;resolution:=optional,
- sun.misc.*;resolution:=optional
- </Import-Package>
- </instructions>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.1.2</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <phase>post-integration-test</phase>
- <goals><goal>jar</goal></goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.8</version>
- <executions>
- <execution>
- <id>attach-docs</id>
- <phase>post-integration-test</phase>
- <goals><goal>jar</goal></goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>animal-sniffer-maven-plugin</artifactId>
- <version>1.7</version>
- <configuration>
- <signature>
- <groupId>org.codehaus.mojo.signature</groupId>
- <artifactId>java16-sun</artifactId>
- <version>1.0</version>
- </signature>
- </configuration>
- <executions>
- <execution>
- <id>check-java16-sun</id>
- <phase>test</phase>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.8</version>
- <configuration>
- <encoding>UTF-8</encoding>
- <docencoding>UTF-8</docencoding>
- <charset>UTF-8</charset>
- <additionalparam>-XDignore.symbol.file</additionalparam>
- <excludePackageNames>com.google.common.base.internal</excludePackageNames>
- <linksource>true</linksource>
- <links>
- <link>http://jsr-305.googlecode.com/svn/trunk/javadoc</link>
- </links>
- </configuration>
- <executions>
- <execution>
- <id>generate-javadoc-site-report</id>
- <phase>site</phase>
- <goals><goal>javadoc</goal></goals>
- </execution>
- <execution>
- <id>generate-jdiff-site-report</id>
- <phase>site</phase>
- <goals><goal>javadoc</goal></goals>
- <configuration>
- <doclet>jdiff.JDiff</doclet>
- <docletPath>${project.basedir}/lib/jdiff.jar</docletPath>
- <additionalparam>
- -XDignore.symbol.file -apiname 'Guava ${project.version}'
- </additionalparam>
- <useStandardDocletOptions>false</useStandardDocletOptions>
- <reportOutputDirectory>${project.reporting.outputDirectory}</reportOutputDirectory>
- <destDir>jdiff</destDir>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <finalName>${project.artifactId}-${project.version}</finalName>
- <sourceDirectory>src</sourceDirectory>
- <testSourceDirectory>disabled</testSourceDirectory>
- </build>
-</project>
diff --git a/debian/rules b/debian/rules
index 8dbf343..b332af0 100755
--- a/debian/rules
+++ b/debian/rules
@@ -23,7 +23,3 @@ override_dh_auto_clean:
get-orig-source:
-uscan --download-current-version --force-download --rename
-
-get-orig-pom:
- wget http://repo1.maven.org/maven2/com/google/guava/guava/$(VERSION)/guava-$(VERSION).pom \
- -O debian/pom.xml -U Debian
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/guava-libraries.git
More information about the pkg-java-commits
mailing list