Skip to content

Commit

Permalink
Merge pull request #28 from carocad/fix/java-version
Browse files Browse the repository at this point in the history
Fix/java version
  • Loading branch information
carocad committed Nov 20, 2019
2 parents 88e50fd + 9e8c954 commit de2abd4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ branches:
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/

language: generic
jdk:
- openjdk8

jobs:
include:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>carocad</groupId>
<artifactId>parcera</artifactId>
<packaging>jar</packaging>
<version>0.4.1-SNAPSHOT</version>
<version>0.4.2</version>
<name>parcera</name>
<description>Grammar-based Clojure parser</description>
<url>https://github.com/carocad/parcera</url>
Expand All @@ -17,7 +17,7 @@
<url>https://github.com/carocad/parcera</url>
<connection>scm:git:git://github.com/carocad/parcera.git</connection>
<developerConnection>scm:git:ssh://[email protected]/carocad/parcera.git</developerConnection>
<tag>3d33c541bd0f49e46db7db12b23b4e2035eb9fd5</tag>
<tag>faf7cc8631e665c408bb94cb806059008135104a</tag>
</scm>
<build>
<sourceDirectory>src/clojure</sourceDirectory>
Expand Down
3 changes: 2 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
(defproject carocad/parcera "0.4.1"
(defproject carocad/parcera "0.4.2"
:description "Grammar-based Clojure parser"
:url "https://github.com/carocad/parcera"
:license {:name "LGPLv3"
:url "https://github.com/carocad/parcera/blob/master/LICENSE.md"}
:source-paths ["src/clojure"]
:java-source-paths ["src/java"]
:javac-options ["-target" "1.8" "-source" "1.8"]
:dependencies [[org.clojure/clojure "1.10.1"]]
:profiles {:dev {:dependencies [[criterium/criterium "0.4.5"] ;; benchmark
[org.clojure/test.check "0.10.0"]] ;; generative testing
Expand Down

0 comments on commit de2abd4

Please sign in to comment.