Skip to content

Commit e8ebba6

Browse files
committed
Setting up for GitHub CI and Maven Central.
1 parent 77fc034 commit e8ebba6

2 files changed

Lines changed: 17 additions & 47 deletions

File tree

README.md

Lines changed: 16 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,16 @@
1-
# README #
2-
3-
This README would normally document whatever steps are necessary to get your application up and running.
4-
5-
### What is this repository for? ###
6-
7-
* Quick summary
8-
* Version
9-
* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
10-
11-
### How do I get set up? ###
12-
13-
* Summary of set up
14-
* Configuration
15-
* Dependencies
16-
* Database configuration
17-
* How to run tests
18-
* Deployment instructions
19-
20-
### Contribution guidelines ###
21-
22-
* Writing tests
23-
* Code review
24-
* Other guidelines
25-
26-
### Who do I talk to? ###
27-
28-
* Repo owner or admin
29-
* Other community or team contact
1+
# BitPart
2+
3+
This repo contains the reference implementation of BitPart, a novel exact search mechanism intended for use in high-dimensional spaces.
4+
5+
![Java CI with Maven](https://github.com/aldearle/bitpart/workflows/Java%20CI%20with%20Maven/badge.svg)
6+
[![javadoc](https://javadoc.io/badge2/com.github.aldearle/bitpart/javadoc.svg)](https://javadoc.io/doc/com.github.aldearle/bitpart)
7+
8+
## Usage via maven
9+
10+
```
11+
<dependency>
12+
<groupId>com.github.aldearle</groupId>
13+
<artifactId>bitpart</artifactId>
14+
<version>1.0.0</version>
15+
</dependency>
16+
```

pom.xml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
</configuration>
7171
</plugin>
7272

73-
7473
</plugins>
7574

7675
</build>
@@ -82,12 +81,6 @@
8281
<artifactId>commons-math3</artifactId>
8382
<version>3.5</version>
8483
</dependency>
85-
86-
<dependency>
87-
<groupId>org.openjfx</groupId>
88-
<artifactId>javafx-controls</artifactId>
89-
<version>12.0.1</version>
90-
</dependency>
9184

9285
<dependency>
9386
<groupId>junit</groupId>
@@ -167,6 +160,7 @@
167160
</execution>
168161
</executions>
169162
</plugin>
163+
170164
</plugins>
171165
</build>
172166
</profile>
@@ -196,15 +190,4 @@
196190
</developer>
197191
</developers>
198192

199-
<repositories>
200-
201-
<!-- Repository for metric space framework. -->
202-
<repository>
203-
<id>uk.ac.standrews.cs.maven.repository</id>
204-
<name>School of Computer Science Maven Repository</name>
205-
<url>https://maven.cs.st-andrews.ac.uk/</url>
206-
</repository>
207-
208-
</repositories>
209-
210193
</project>

0 commit comments

Comments
 (0)