Skip to content

Commit

Permalink
disable examples publishing
Browse files Browse the repository at this point in the history
add codecov badge
update todo
  • Loading branch information
aonyshchuk committed Jun 4, 2020
1 parent 2f85898 commit 84aa470
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
The library provides the AST for structured Patches over Scala standard types as well as type classes that know how to compute patches for different types.

[![Build Status](https://cloud.drone.io/api/badges/andyglow/scala-patch/status.svg)](https://cloud.drone.io/andyglow/scala-patch)
[![codecov](https://codecov.io/gh/andyglow/scala-patch/branch/master/graph/badge.svg)](https://codecov.io/gh/andyglow/scala-patch)

Supported types:
- basic types like `string`, `boolean`, `numeric`
Expand Down
22 changes: 13 additions & 9 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
# TODO
- [x] ordered collection diff (Lists fail)
- [ ] provide more space efficient algorithm (detect similar sequences)
- [x] ordered collection diff
- [ ] more types
- [x] java.sql
- [ ] etc
- [ ] more tests
- [x] java.sql
- [ ] prepare for publishing
- [ ] readme
- [x] prepare for publishing
- [x] readme
- [x] intro with example
- [ ] api details
- [ ] sbt
- [ ] drone
- [ ] codecov
- [ ] sonatype
- [x] sbt
- [x] drone
- [x] codecov
- [x] sonatype
- [ ] improve readme
- [ ] api details
- [ ] adapters
- [ ] macros
- [ ] provide more space efficient algorithm/structure (detect similar sequences) for ordered collections patch

5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,9 @@ lazy val macros = (project in file("macros")).dependsOn(core).settings(

lazy val examples = (project in file("examples")).dependsOn(core, macros).settings(
commons,
name := "scala-patch-examples"
)
name := "scala-patch-examples",
publish / skip := true,
publishArtifact := false)

lazy val root = (project in file("."))
.aggregate(core, macros, examples)
Expand Down

0 comments on commit 84aa470

Please sign in to comment.