You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,25 +57,26 @@ Package to generate reports with [JasperReports 6.3.1](http://community.jasperso
57
57
58
58
* Java JDK 1.8
59
59
* PHP [exec()](http://php.net/manual/function.exec.php) function
60
-
*[optional][Mysql Connector](http://dev.mysql.com/downloads/connector/j/) (if you want to use database)
61
-
*[optional][PostgreSQL Connector](https://jdbc.postgresql.org/download.html) (if you want to use database)
62
-
*[optional][Microsoft JDBC Drivers](https://www.microsoft.com/en-US/download/details.aspx?id=11774) (if you want to use database)
63
-
*[optional][Jaspersoft Studio](http://community.jaspersoft.com/project/jaspersoft-studio) (to draw and compile your reports)
60
+
61
+
##Optional
62
+
63
+
*[Mysql JDBC Driver](http://dev.mysql.com/downloads/connector/j/) (If you want to use a database)
64
+
*[PostgreSQL JDBC Driver](https://jdbc.postgresql.org/download.html) (If you want to use a database)
65
+
*[Microsoft JDBC Drivers](https://www.microsoft.com/en-US/download/details.aspx?id=11774) (If you want to use a database)
66
+
*[Jaspersoft Studio](http://community.jaspersoft.com/project/jaspersoft-studio) (to draw and compile your reports)
64
67
65
68
###Java(JDK)
66
69
67
70
Check if you already have Java installed:
68
71
69
72
```
70
-
$ java -version
71
-
java version "1.8.0_101"
72
-
Java(TM) SE Runtime Environment (build 1.8.0_101-b13)
73
-
Java HotSpot(TM) 64-Bit Server VM (build 25.101-b13, mixed mode)
73
+
$ javac -version
74
+
javac version 1.8.0_101
74
75
```
75
76
76
77
If you get:
77
78
78
-
command not found: java
79
+
command not found: javac
79
80
80
81
Then install it with: (Ubuntu/Debian)
81
82
@@ -87,7 +88,7 @@ To install on: (centOS/Fedora)
87
88
88
89
To install on windows visit the link-> [JDK](http://www.oracle.com/technetwork/pt/java/javase/downloads/jdk8-downloads-2133151.html) and look for the most appropriate version for your system.
89
90
90
-
Now run the `java -version` again and check if the output is ok.
91
+
Now run the `javac -version` again and check if the output is ok.
0 commit comments