Skip to content

Commit d4561f4

Browse files
committed
Require clojure 1.7.0 and remove plugins
as requested by Alex Miller
1 parent 0599423 commit d4561f4

2 files changed

Lines changed: 4 additions & 42 deletions

File tree

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
From 0.2.0-alpha2 to 0.2.0-alpha3
2+
- Minimum requirement is now clojure 1.7.0
3+
14
From 0.2.0-alpha1 to 0.2.0-alpha2
25
- qname function now returns canonical (keyword) names
36
- Remove QName defrecord from Clojurescript

pom.xml

Lines changed: 1 addition & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -59,53 +59,12 @@
5959
<directory>${project.basedir}/src/test/clojurescript</directory>
6060
</testResource>
6161
</testResources>
62-
<plugins>
63-
<plugin>
64-
<!-- cljc-maven-plugin produces .clj files from .cljc files,
65-
hence enabling usage of .cljc while supporting clojure < 1.7.0 -->
66-
<groupId>net.bendlas</groupId>
67-
<artifactId>cljc-maven-plugin</artifactId>
68-
<version>0.1.2</version>
69-
<executions>
70-
<execution>
71-
<id>split-compile</id>
72-
<phase>generate-sources</phase>
73-
<goals><goal>split</goal></goals>
74-
</execution>
75-
<execution>
76-
<id>split-compile-tests</id>
77-
<phase>generate-test-sources</phase>
78-
<goals><goal>split-tests</goal></goals>
79-
</execution>
80-
</executions>
81-
</plugin>
82-
<plugin>
83-
<artifactId>maven-jar-plugin</artifactId>
84-
<version>2.4</version>
85-
<executions>
86-
<execution>
87-
<id>default-jar</id>
88-
<phase>package</phase>
89-
<goals>
90-
<goal>jar</goal>
91-
</goals>
92-
<configuration>
93-
<includes>
94-
<include>**/*.clj</include>
95-
<include>**/*.cljs</include>
96-
<include>**/*.cljc</include>
97-
</includes>
98-
</configuration>
99-
</execution>
100-
</executions>
101-
</plugin>
102-
</plugins>
10362
</build>
10463

10564
<properties>
10665
<!-- set clojure.version to >= 1.8.0 to run cljs test suite
10766
(and make sure to run on jdk >= 1.8 for nashorn support) -->
108-
<clojure.version>1.5.0</clojure.version>
67+
<clojure.version>1.7.0</clojure.version>
10968
</properties>
11069

11170
<pluginRepositories>

0 commit comments

Comments
 (0)