Skip to content

Commit 2c1e3fd

Browse files
authored
#82: Added release_config.yml (#83)
* #82: Added release_config.yml
1 parent 0fc844f commit 2c1e3fd

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

doc/changes/changes_3.2.0.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ In this release following changes are made:
1616
* #60: Used Error Message Builder for Error Messages
1717
* #55: Unified the interfaces for creation of dB Objects
1818

19+
# Refactoring:
20+
21+
* #82: Added release_config.yml
22+
1923
## Bug Fixes:
2024

2125
* #80: Fixed broken url link in the pom.xml

release_config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
release-platforms:
2+
- GitHub
3+
- Community
4+
- Maven
5+
community-tags:
6+
- Java
7+
- Testing
8+
community-project-name: Test Database Builder (Java)
9+
community-project-description: |
10+
Exasol's **Test Database Builder for Java** (TDDB) is a library that makes writing integration tests for database applications easier.
11+
12+
The main design goals are to make the code of the integration test compact and readable at the same time.
13+
14+
## In a Nutshell
15+
16+
```java
17+
// Precondition: Get a JDBC connection and store it in variable "connection"
18+
final DatabaseObjectFactory factory=new ExasolObjectFactory(connection);
19+
final Schema schema factory.createSchema("ONLINESHOP");
20+
final Table table=schema.createTable("ITEMS","PRODUCT_ID","DECIMAL(18,0)","NAME","VARCHAR(40)")
21+
.insert("1","Cat food")
22+
.insert("2","Toy mouse");
23+
final User user=factory.createUser("KIMIKO")
24+
.grant(CREATE_SESSION)
25+
.grant(table,SELECT,UDPATE);
26+
```
27+
28+
For more details, please refer to the [user guide](doc/user_guide/user_guide.md).

0 commit comments

Comments
 (0)