Skip to content

Commit

Permalink
Prepare for 1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
garricko committed Aug 9, 2017
1 parent fb057a3 commit 4984db0
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ build
out
classes
.idea
*.iml
local.properties
.vagrant
dependency-reduced-pom.xml
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,23 @@

This project includes a variety of different things built on top of
the database library.

### Features

* Some basic ETL capabilities for moving data around efficiently between databases
* Database health checks for Vert.x based servers

In the future I plan to add expand the ETL functionality, add reporting and analytics,
and add an EAV model, among other things.

### Getting Started

The library is available in the public Maven repository:

```
<dependency>
<groupId>com.github.susom</groupId>
<artifactId>database-goodies</artifactId>
<version>1.0</version>
</dependency>
```
25 changes: 22 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.github.susom</groupId>
<artifactId>database-goodies</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>

<name>${project.groupId}:${project.artifactId}</name>
<description>Useful things built on top of the database library.</description>
Expand Down Expand Up @@ -177,7 +177,7 @@
<artifactId>database</artifactId>
<version>2.3</version>
</dependency>
<!--
<!--
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand Down Expand Up @@ -238,7 +238,26 @@

<profiles>
<profile>
<id>release-sign-artifacts</id>
<id>sonatype</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>release</id>
<activation>
<property>
<name>performRelease</name>
Expand Down

0 comments on commit 4984db0

Please sign in to comment.