Skip to content

Commit e2180cd

Browse files
committed
require >= clojure 1.7 to use cljc files in tools.namespace
1 parent bfa64c6 commit e2180cd

File tree

2 files changed

+12
-26
lines changed

2 files changed

+12
-26
lines changed

README.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@ Generative test runner.
66
Releases and Dependency Information
77
========================================
88

9-
Latest stable release: 0.5.2
9+
Latest stable release: 1.0.0
1010

1111
* [All Released Versions](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22test.generative%22)
1212

1313
* [Development Snapshot Versions](https://oss.sonatype.org/index.html#nexus-search;gav~org.clojure~test.generative~~~)
1414

1515
[Leiningen](https://github.com/technomancy/leiningen) dependency information:
1616

17-
[org.clojure/test.generative "0.5.2"]
17+
[org.clojure/test.generative "1.0.0"]
1818

1919
[Maven](http://maven.apache.org/) dependency information:
2020

2121
<dependency>
2222
<groupId>org.clojure</groupId>
2323
<artifactId>test.generative</artifactId>
24-
<version>0.5.2</version>
24+
<version>1.0.0</version>
2525
</dependency>
2626

2727

@@ -85,24 +85,20 @@ Developer Information
8585
========================================
8686

8787
* [GitHub project](https://github.com/clojure/test.generative)
88-
89-
* [Bug Tracker](http://dev.clojure.org/jira/browse/TGEN)
90-
91-
* [Continuous Integration](http://build.clojure.org/job/test.generative/)
92-
93-
* [Compatibility Test Matrix](http://build.clojure.org/job/test.generative-test-matrix/)
88+
* [Bug Tracker](https://clojure.atlassian.net/browse/TGEN)
89+
* [Continuous Integration](https://build.clojure.org/job/test.generative/)
90+
* [Compatibility Test Matrix](https://build.clojure.org/job/test.generative-test-matrix/)
9491

9592
Related Projects
9693
========================================
9794

9895
* [ClojureCheck](https://bitbucket.org/kotarak/clojurecheck) adds
9996
property based testing to clojure.test following the lines of
10097
[QuickCheck](http://en.wikipedia.org/wiki/QuickCheck) for Haskell.
101-
10298
* [simple-check](https://github.com/reiddraper/simple-check) is a
10399
Clojure property-based testing tool inspired by QuickCheck.
104100

105101
Copyright and License
106102
========================================
107103

108-
Copyright (c) 2012 Rich Hickey. All rights reserved. The use and distribution terms for this software are covered by the Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can be found in the file epl-v10.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound bythe terms of this license. You must not remove this notice, or any other, from this software.
104+
Copyright (c) 2012-2020 Rich Hickey. All rights reserved. The use and distribution terms for this software are covered by the Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can be found in the file epl-v10.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound bythe terms of this license. You must not remove this notice, or any other, from this software.

pom.xml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
<version>0.2.2</version>
1111
</parent>
1212

13+
<properties>
14+
<clojure.version>1.7.0</clojure.version>
15+
<clojure.warnOnReflection>true</clojure.warnOnReflection>
16+
</properties>
17+
1318
<developers>
1419
<developer>
1520
<name>Stuart Halloway</name>
@@ -39,24 +44,9 @@
3944
<enabled>true</enabled>
4045
</snapshots>
4146
</repository>
42-
<repository>
43-
<id>clojure-releases</id>
44-
<url>http://build.clojure.org/releases</url>
45-
<releases>
46-
<enabled>true</enabled>
47-
</releases>
48-
<snapshots>
49-
<enabled>false</enabled>
50-
</snapshots>
51-
</repository>
5247
</repositories>
5348

5449
<dependencies>
55-
<!-- <dependency> -->
56-
<!-- <groupId>org.clojure</groupId> -->
57-
<!-- <artifactId>clojure</artifactId> -->
58-
<!-- <version>1.5.0-beta12</version> -->
59-
<!-- </dependency> -->
6050
<dependency>
6151
<groupId>org.clojure</groupId>
6252
<artifactId>tools.namespace</artifactId>

0 commit comments

Comments
 (0)