Skip to content

Commit a13aa0f

Browse files
authored
Small fixes, refreshing version number
1 parent ca64d51 commit a13aa0f

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@
55
[Running test and build](easydao-samples/README.md)
66

77
<img align="left" src="https://raw.githubusercontent.com/vanioinformatika/easydao/master/easydao-docs/easydao-logo.png" border="1">
8-
EasyDao is a Maven plugin for generating lightweight, fast and flexible model and dao for Spring-based projects. The latest version is **3.1.0**. You can find it on Bintray.
8+
EasyDao is a Maven plugin for generating lightweight, fast and flexible model and dao for Spring-based projects.
99

10-
**EasyDao has tested on Oracle 10, 11, 12 and PostgreSQL 9.** Maybe it works with other Oracle and PostgreSQL versions.
10+
The latest version is **3.2.0**.
11+
You find it on Bintray.
12+
13+
**EasyDao has tested on Oracle 10, 11, 12 and PostgreSQL 9.**
14+
Maybe it works with other Oracle and PostgreSQL versions.
1115

12-
**For Oracle 12c users:** use Java 8 and ojdbc8 in your pom.xml, otherwise you get an error: *ORA-28040: No matching authentication protocol*
1316

14-
Changing JDBC driver: https://github.com/vanioinformatika/easydao/issues/15#issuecomment-294959739
1517

16-
Please check the Oracle documentation: *9.2 Support for Login Authentication* http://docs.oracle.com/database/122/JJDBC/JJDBC.pdf
1718

1819
For generating dao and model you need using the **easydao-maven-plugin**. You can see how to use it: [sample applications](./easydao-samples/)
1920

@@ -108,7 +109,7 @@ Add to settings.xml:
108109
<configuration>
109110
<dbName>sampledb</dbName>
110111
<dbType>POSTGRESQL9</dbType>
111-
<dbUrl>jdbc:postgresql://172.17.0.2/sampledb</dbUrl>
112+
<dbUrl>jdbc:postgresql://localhost:5432/sampledb</dbUrl>
112113
<dbUsername>postgres</dbUsername>
113114
<dbPassword>sample</dbPassword>
114115
<packageOfJavaModel>hu.vanio.easydao.sample.model</packageOfJavaModel>
@@ -124,8 +125,16 @@ Add to settings.xml:
124125
</plugin>
125126
```
126127

128+
---
129+
130+
**For Oracle 12c users:** use Java 8 and ojdbc8 in your pom.xml, otherwise you get an error: *ORA-28040: No matching authentication protocol*
131+
127132
Changing JDBC driver: https://github.com/vanioinformatika/easydao/issues/15#issuecomment-294959739
128133

134+
Please check the Oracle documentation: *9.2 Support for Login Authentication* http://docs.oracle.com/database/122/JJDBC/JJDBC.pdf
135+
136+
---
137+
129138
If you are using Java 8, then set the javadoc plugin with **-Xdoclint:none**:
130139

131140
```xml

0 commit comments

Comments
 (0)