1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
Description: Use maven-repo-helper
.
cbmc (5.10-1) unstable; urgency=low
.
* New upstream release
* Updated Standards version to 4.2.1 (no changes required)
Author: Michael Tautschnig <mt@debian.org>
---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2018-09-27
Index: cbmc-5.76.1/jbmc/src/java_bytecode/Makefile
===================================================================
--- cbmc-5.76.1.orig/jbmc/src/java_bytecode/Makefile
+++ cbmc-5.76.1/jbmc/src/java_bytecode/Makefile
@@ -73,12 +73,12 @@ LIBRARY_DIR = ../../lib/java-models-libr
.PHONY: clean_library
clean_library:
- if [ -d $(LIBRARY_DIR) ]; then cd $(LIBRARY_DIR); mvn --quiet clean; fi
+ if [ -d $(LIBRARY_DIR) ]; then cd $(LIBRARY_DIR); mh_clean; fi
.PHONY: library
library:
if [ -d $(LIBRARY_DIR) ]; then \
- (cd $(LIBRARY_DIR); mvn --quiet -Dmaven.test.skip=true package); \
+ (cd $(LIBRARY_DIR); mvn --offline -Dmaven.repo.local=repo package); \
fi
###############################################################################
Index: cbmc-5.76.1/java-models-library/pom.xml
===================================================================
--- cbmc-5.76.1.orig/java-models-library/pom.xml
+++ cbmc-5.76.1/java-models-library/pom.xml
@@ -40,7 +40,6 @@
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
- <version>2.8</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -62,6 +61,7 @@
<artifactItem>
<groupId>org.cprover.util</groupId>
<artifactId>cprover-api</artifactId>
+ <version>1.0.0</version>
<outputDirectory>${project.build.directory}</outputDirectory>
<destFileName>cprover-api.jar</destFileName>
</artifactItem>
@@ -74,7 +74,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>3.6.1</version>
<configuration>
<compilerArguments>
<classpath>${java.home}/lib/rt.jar${path.separator}${maven.compile.classpath}</classpath>
|