Skip to content

Commit

Permalink
Add README badges
Browse files Browse the repository at this point in the history
  • Loading branch information
igr committed Mar 3, 2021
1 parent 624552c commit 9eec8fc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Jodd Db

[![Jodd](https://img.shields.io/badge/>-Jodd-orange)](https://github.com/oblac/jodd)
![GitHub release](https://img.shields.io/github/release/oblac/jodd-db.svg)
![Maven Central](https://img.shields.io/maven-central/v/org.jodd/jodd-db)
[![javadoc](https://javadoc.io/badge2/org.jodd/jodd-db/javadoc.svg)](https://javadoc.io/doc/org.jodd/jodd-db)
[![Build Status](https://img.shields.io/travis/oblac/jodd.svg)](https://travis-ci.org/oblac/jodd-db)
[![codecov](https://codecov.io/gh/oblac/jodd-db/branch/master/graph/badge.svg)](https://codecov.io/gh/oblac/jodd-db)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/5fe3c8d3251141f0a3806ffaf43d557b)](https://www.codacy.com/gh/oblac/jodd-db/dashboard?utm_source=github.com&utm_medium=referral&utm_content=oblac/jodd-db&utm_campaign=Badge_Grade)
[![Stack Overflow](https://img.shields.io/badge/stack%20overflow-jodd-4183C4.svg)](https://stackoverflow.com/questions/tagged/jodd)
[![BSD License](https://img.shields.io/badge/license-BSD--2--Clause-blue.svg)](https://github.com/oblac/jodd-db/blob/master/LICENSE)

🌟 Simple Java Database Object Mapper.

🏡 Website: [db.jodd.org](https://db.jodd.org)
Expand Down
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ group = 'org.jodd'
//version = '6.0.0.' + timestamp() + "-SNAPSHOT"
version = '6.0.0'

rootProject.description = 'Jodd DbOom'
rootProject.description = 'Jodd Db'

ext {
}
Expand Down Expand Up @@ -130,7 +130,7 @@ ext.admin = hasProperty('sonatypeUsername')
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = 'jodd-dboom'
artifactId = 'jodd-db'
from components.java
versionMapping {
usage('java-api') {
Expand All @@ -141,13 +141,13 @@ publishing {
}
}
pom {
name = 'Jodd DbOom'
description = 'Jodd DbOom'
url = 'https://dboom.jodd.org'
name = 'Jodd Db'
description = 'Jodd Db'
url = 'https://db.jodd.org'
licenses {
license {
name = 'BSD-2-Clause'
url = 'https://github.com/oblac/jodd-dboom/blob/master/LICENSE'
url = 'https://github.com/oblac/jodd-db/blob/master/LICENSE'
}
}
developers {
Expand All @@ -159,9 +159,9 @@ publishing {
}
}
scm {
url = 'https://github.com/oblac/jodd-dboom.git'
connection = 'scm:git:git://github.com/oblac/jodd-dboom.git'
developerConnection = 'scm:git:ssh://[email protected]/oblac/jodd-dboom.git'
url = 'https://github.com/oblac/jodd-db.git'
connection = 'scm:git:git://github.com/oblac/jodd-db.git'
developerConnection = 'scm:git:ssh://[email protected]/oblac/jodd-db.git'
}
}
}
Expand Down

0 comments on commit 9eec8fc

Please sign in to comment.