File tree 3 files changed +15
-1
lines changed
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 3
3
mvn -q dependency:build-classpath -Dmdep.outputFile=maven-classpath
4
4
cat << EOF >maven-classpath.properties
5
5
maven.compile.classpath=` cat maven-classpath`
6
+ maven.test.classpath=` cat maven-classpath`
6
7
EOF
7
8
echo " Wrote maven-classpath.properties for standalone ant use"
Original file line number Diff line number Diff line change 102
102
unless =" maven.test.skip" >
103
103
<java classname =" clojure.main" failonerror =" true" fork =" true" >
104
104
<classpath >
105
- <pathelement path =" ${ maven.compile .classpath } " />
105
+ <pathelement path =" ${ maven.test .classpath } " />
106
106
<path location =" ${ test-classes } " />
107
107
<path location =" ${ test } " />
108
108
<path location =" ${ build } " />
Original file line number Diff line number Diff line change 45
45
<version >1.7.0</version >
46
46
<scope >provided</scope >
47
47
</dependency >
48
+ <dependency >
49
+ <groupId >org.clojure</groupId >
50
+ <artifactId >test.generative</artifactId >
51
+ <version >0.1.5</version >
52
+ <scope >test</scope >
53
+ <exclusions >
54
+ <exclusion >
55
+ <groupId >org.clojure</groupId >
56
+ <artifactId >clojure</artifactId >
57
+ </exclusion >
58
+ </exclusions >
59
+ </dependency >
48
60
</dependencies >
49
61
50
62
<build >
94
106
</goals >
95
107
<configuration >
96
108
<target >
109
+ <property name =" maven.test.classpath" refid =" maven.test.classpath" />
97
110
<ant target =" test" />
98
111
</target >
99
112
</configuration >
You can’t perform that action at this time.
0 commit comments