-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically merge
data_readers.clj
and `META-INF/plexus/component…
…s.xml`, Support custom mergers, tools.deps updated to 0.9.763 (closes #1)
- Loading branch information
Showing
27 changed files
with
463 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,5 @@ pom.xml.asc | |
.hg/ | ||
*.sublime-workspace | ||
.DS_Store | ||
.cpcache | ||
.cpcache | ||
!test_projects/mergers/project_c.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
### 1.0.0 - Aug 19, 2020 | ||
|
||
- Automatically merge `data_readers.clj` and `META-INF/plexus/components.xml` | ||
- Support custom mergers #1 | ||
- tools.deps updated to 0.9.763 | ||
|
||
### 0.1.11 - Aug 5, 2020 | ||
|
||
- Concat all `META-INF/services/**` files with matching names #2 #27 thx @jdf-id-au | ||
|
||
### 0.1.10 - Mar 31, 2020 | ||
|
||
- tools.deps updated to 0.8.677 | ||
|
||
### 0.1.9 - Mar 31, 2020 | ||
|
||
- `--multi-release` / `:multi-release?` added #22 #23 thx @gavinkflam | ||
|
||
### 0.1.8 - Jan 13, 2020 | ||
|
||
- Resolve `:paths` relative to `deps.edn` location | ||
|
||
### 0.1.7 - Dec 20, 2019 | ||
|
||
- `--main-class` / `:main-class` option added #13 #18 thx @gnarroway | ||
- tools.deps updated to 0.8.599 | ||
|
||
### 0.1.6 - Oct 4, 2019 | ||
|
||
- Replace `\` with `/` when building on Windows #16 #17 thx @gnarroway | ||
|
||
### 0.1.5 - Oct 4, 2019 | ||
|
||
- Ignore non-jar dependencies #14 #15 | ||
|
||
### 0.1.4 - June 5, 2019 | ||
|
||
- Package paths before jars so that local files take priority over deps #9 | ||
|
||
### 0.1.3 - May 30, 2019 | ||
|
||
- Fixed NPE when target is located in current dir #7 | ||
|
||
### 0.1.2 - May 27, 2019 | ||
|
||
- Make target dirs if don’t exist #4 | ||
|
||
### 0.1.1 - May 3, 2019 | ||
|
||
- Normalize dependencies without namespaces #3 | ||
|
||
### 0.1.0 - April 29, 2019 | ||
|
||
- Initial version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
{:deps | ||
{org.clojure/clojure {:mvn/version "1.10.1"} | ||
org.clojure/tools.deps.alpha {:mvn/version "0.8.677"}}} | ||
org.clojure/tools.deps.alpha {:mvn/version "0.9.763"}} | ||
|
||
:aliases | ||
{:test {:extra-paths ["test"]}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/zsh -euo pipefail | ||
|
||
cd "`dirname $0`/.." | ||
|
||
clj -A:test -m uberdeps.test |
Oops, something went wrong.