Lines 1-14
Link Here
|
1 |
--- build.xml.orig 2014-05-07 20:40:45.000000000 +0000 |
1 |
--- build.xml.orig 2016-03-17 12:14:52 UTC |
2 |
+++ build.xml 2014-06-13 18:53:29.152647282 +0000 |
2 |
+++ build.xml |
3 |
@@ -52,7 +52,7 @@ |
|
|
4 |
<property name="component.title" value="Commons MATH"/> |
5 |
|
6 |
<!-- The current version number of this component --> |
7 |
- <property name="component.version" value="3.1-SNAPSHOT"/> |
8 |
+ <property name="component.version" value="3.3-SNAPSHOT"/> |
9 |
|
10 |
<!-- The base directory for component sources --> |
11 |
<property name="source.home" value="src/main/java"/> |
12 |
@@ -174,7 +174,7 @@ |
3 |
@@ -174,7 +174,7 @@ |
13 |
|
4 |
|
14 |
<!-- ========== Unit Test Targets ========================================= --> |
5 |
<!-- ========== Unit Test Targets ========================================= --> |
Lines 27-46
Link Here
|
27 |
|
18 |
|
28 |
<copy file="LICENSE.txt" tofile="${build.home}/classes/META-INF/LICENSE.txt"/> |
19 |
<copy file="LICENSE.txt" tofile="${build.home}/classes/META-INF/LICENSE.txt"/> |
29 |
<copy file="NOTICE.txt" tofile="${build.home}/classes/META-INF/NOTICE.txt"/> |
20 |
<copy file="NOTICE.txt" tofile="${build.home}/classes/META-INF/NOTICE.txt"/> |
30 |
@@ -339,29 +339,8 @@ |
21 |
@@ -339,38 +339,11 @@ |
31 |
|
22 |
|
32 |
<!-- ========== Gump Target ===================================================== --> |
23 |
<!-- ========== Gump Target ===================================================== --> |
33 |
|
24 |
|
34 |
- <target name="gump" depends="clean,test,javadoc,jar" description="Gump Target - clean,test,javadoc,jar"/> |
25 |
- <target name="gump" depends="clean,test,javadoc,jar" description="Gump Target - clean,test,javadoc,jar"/> |
35 |
+ <target name="gump" depends="clean,javadoc,jar" description="Gump Target - clean,javadoc,jar"/> |
26 |
+ <target name="gump" depends="clean,javadoc,jar" description="Gump Target - clean,test,javadoc,jar"/> |
36 |
|
27 |
|
37 |
|
28 |
|
38 |
-<!-- ========== Download Dependencies =========================================== --> |
29 |
<!-- ========== Download Dependencies =========================================== --> |
39 |
- |
30 |
|
40 |
- <target name="download-dependencies" |
31 |
- <target name="download-dependencies" |
41 |
- depends="check-availability" unless="skip.download"> |
32 |
- depends="check-availability" unless="skip.download"> |
42 |
- <echo message="doing download-dependencies..." /> |
33 |
- <echo message="doing download-dependencies..." /> |
43 |
- <antcall target="download-junit" /> |
34 |
- <antcall target="download-junit" /> |
|
|
35 |
- <antcall target="download-hamcrest" /> |
44 |
- </target> |
36 |
- </target> |
45 |
- |
37 |
- |
46 |
- <target name="check-availability"> |
38 |
- <target name="check-availability"> |
Lines 55-60
Link Here
|
55 |
- usetimestamp="true" ignoreerrors="true" |
47 |
- usetimestamp="true" ignoreerrors="true" |
56 |
- src="http://repo1.maven.org/maven2/junit/junit/${junit.version}/junit-${junit.version}.jar"/> |
48 |
- src="http://repo1.maven.org/maven2/junit/junit/${junit.version}/junit-${junit.version}.jar"/> |
57 |
- </target> |
49 |
- </target> |
58 |
- |
50 |
- |
|
|
51 |
- <target name="download-hamcrest" unless="hamcrest.found"> |
52 |
- <echo message="Downloading hamcrest..."/> |
53 |
- <mkdir dir="${download.lib.dir}" /> |
54 |
- <get dest="${download.lib.dir}/${hamcrest.jar}" |
55 |
- usetimestamp="true" ignoreerrors="true" |
56 |
- src="http://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"/> |
57 |
- </target> |
58 |
|
59 |
</project> |
59 |
</project> |
60 |
|
60 |
|