Skip to content

Commit

Permalink
create clojars group and project
Browse files Browse the repository at this point in the history
Signed-off-by: Avelino <[email protected]>
  • Loading branch information
avelino committed Feb 10, 2021
1 parent 3f9a537 commit 06cb797
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ pom.xml.asc
*~
*.swp
*.swo
.idea
*.iml
22 changes: 14 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,19 @@

A simple wrapper around the Boilerpipe text extraction library.

[![Clojars Project](https://img.shields.io/clojars/v/run.avelino/boilerpipe-clj.svg)](https://clojars.org/run.avelino/boilerpipe-clj)


## Artifacts

`boilerpipe-clj` is [released on Clojars](http://clojars.org).
`boilerpipe-clj` is [released on Clojars](https://clojars.org/run.avelino/boilerpipe-clj).

### The Most Recent Release

With Leiningen, add it to the dependencies in `project.clj`:

```clojure
[io.curtis/boilerpipe-clj "0.3.0"]
[run.avelino/boilerpipe-clj "0.3.1"]
```

## Usage
Expand Down Expand Up @@ -60,20 +63,23 @@ Java.
## Contributors
* Curtis Gagliardi ([@cgag](https://github.com/cgag))
* Nick Barnwell ([@nickbarnwell](https://github.com/nickbarnwell))
* Avelino ([@avelino](https://github.com/avelino))

## License

Copyright © 2013 [Curtis Gagliardi](http://curtis.io/)
Copyright © 2013 [Nick Barnwell](https://github.com/nickbarnwell)

boilerpipe-clj is provided under the ASL 2.0 license.

The full license is available in LICENSE.md

## Changes

### 0.3.1

- Change package `de.l3s.boilerpipe/boilerpipe` to `com.robbypond/boilerpipe`: Google Code deprecated
- Register `run.avelino/boilerpipe-clj` on [Clojar](https://clojars.org/run.avelino/boilerpipe-clj)

### 0.3.0

Remove util namespace, it's outside the scope of this library. It only made it in here
due to lazyness when pulling this code out of another project. I suspect no one but me
was using them anyway.
- Remove util namespace, it's outside the scope of this library. It only made it in here
- due to lazyness when pulling this code out of another project. I suspect no one but me
- was using them anyway.
10 changes: 4 additions & 6 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
(defproject io.curtis/boilerpipe-clj "0.3.0"
(defproject run.avelino/boilerpipe-clj "0.3.1"
:description "A simple wrapper around the Boilerpipe library for extracting text from html articles/pages"
:url "http://curtis.io"
:url "https://avelino.run"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
:dependencies [[org.clojure/clojure "1.10.2"]
[org.thnetos/cd-client "0.3.4" :exclusions [org.clojure/clojure cheshire]]
[net.sourceforge.nekohtml/nekohtml "1.9.15"]
[xerces/xercesImpl "2.9.1"]
[de.l3s.boilerpipe/boilerpipe "1.2.0"]]
:repositories {"boilerpipe"
{:url "http://boilerpipe.googlecode.com/svn/repo/"}})
[com.robbypond/boilerpipe "1.2.3"]])

0 comments on commit 06cb797

Please sign in to comment.