Skip to content

Commit 69a6850

Browse files
committed
Updating AnyChart library version and licensing info
1 parent 32438eb commit 69a6850

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

Diff for: README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,8 @@ Build tool - [Maven](https://maven.apache.org/)
9292
* [Technical Support](https://anychart.com/support)
9393

9494
## License
95-
[© AnyChart.com - JavaScript charts](http://www.anychart.com). Released under the [Apache 2.0 License](https://github.com/anychart-integrations/jjava-jsp-jdbc-mysql-template/blob/master/LICENSE).
95+
AnyChart JSP/MySql integration sample includes two parts:
96+
- Code of the integration sample that allows to use Javascript library (in this case, AnyChart) with JSP technology, Java language and MySql database with JDBC driver. You can use, edit, modify it, use it with other Javascript libraries without any restrictions. It is released under [Apache 2.0 License](https://github.com/anychart-integrations/java-jsp-jdbc-mysql-template/blob/master/LICENSE).
97+
- AnyChart JavaScript library. It is released under Commercial license. You can test this plugin with the trial version of AnyChart. Our trial version is not limited by time and doesn't contain any feature limitations. Check details [here](https://www.anychart.com/buy/).
98+
99+
If you have any questions regarding licensing - please contact us. <[email protected]>

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.anychart</groupId>
66
<artifactId>java-jsp-jdbc-mysql-template</artifactId>
7-
<version>1.0-SNAPSHOT</version>
7+
<version>1.1-SNAPSHOT</version>
88
<packaging>war</packaging>
99

1010
<name>java-jsp-jdbc-mysql-template</name>

Diff for: src/main/webapp/WEB-INF/views/index.jsp

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@
44
<head>
55
<meta charset="UTF-8">
66
<title>${title}</title>
7-
<script src="https://cdn.anychart.com/js/latest/anychart-bundle.min.js"></script>
8-
<link rel="stylesheet" href="https://cdn.anychart.com/css/latest/anychart-ui.min.css" />
7+
<script src="https://cdn.anychart.com/releases/8.0.0/js/anychart-base.min.js"></script>
8+
<script src="https://cdn.anychart.com/releases/8.0.0/js/anychart-exports.min.js"></script>
9+
<script src="https://cdn.anychart.com/releases/8.0.0/js/anychart-vml.min.js"></script>
10+
<link rel="stylesheet" href="https://cdn.anychart.com/releases/8.0.0/css/anychart-ui.min.css" />
11+
<link rel="stylesheet" href="https://cdn.anychart.com/releases/8.0.0/fonts/css/anychart.min.css"/>
912
<link rel="stylesheet" href="/resources/css/style.css" />
1013
</head>
1114
<body>

0 commit comments

Comments
 (0)