├── .gitignore ├── LICENSE ├── README.md ├── build.sbt ├── database_backup.sql ├── project ├── build.properties ├── plugins.sbt ├── project │ └── target │ │ └── config-classes │ │ ├── $a0fa1f18db796dda98ea$$anonfun$$sbtdef$1.class │ │ ├── $a0fa1f18db796dda98ea$.class │ │ ├── $a0fa1f18db796dda98ea.cache │ │ └── $a0fa1f18db796dda98ea.class └── target │ ├── config-classes │ ├── $0957ed17f7288d283150$$anonfun$$sbtdef$1.class │ ├── $0957ed17f7288d283150$.class │ ├── $0957ed17f7288d283150.cache │ ├── $0957ed17f7288d283150.class │ ├── $32e021d066d5ee0cd8e2$$anonfun$$sbtdef$1.class │ ├── $32e021d066d5ee0cd8e2$.class │ ├── $32e021d066d5ee0cd8e2.cache │ ├── $32e021d066d5ee0cd8e2.class │ ├── $3f4b464f3d166788dc64$$anonfun$$sbtdef$1.class │ ├── $3f4b464f3d166788dc64$.class │ ├── $3f4b464f3d166788dc64.cache │ ├── $3f4b464f3d166788dc64.class │ ├── $91fbc2aca9585352e8b4$$anonfun$$sbtdef$1.class │ ├── $91fbc2aca9585352e8b4$.class │ ├── $91fbc2aca9585352e8b4.cache │ ├── $91fbc2aca9585352e8b4.class │ ├── $f4b97cc595ccf7f61924$$anonfun$$sbtdef$1.class │ ├── $f4b97cc595ccf7f61924$.class │ ├── $f4b97cc595ccf7f61924.cache │ └── $f4b97cc595ccf7f61924.class │ ├── resolution-cache │ ├── default │ │ └── scala-akka-http-mysql-template-build │ │ │ └── scala_2.10 │ │ │ └── sbt_0.13 │ │ │ └── 0.1-SNAPSHOT │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── reports │ │ ├── default-scala-akka-http-mysql-template-build-compile-internal.xml │ │ ├── default-scala-akka-http-mysql-template-build-compile.xml │ │ ├── default-scala-akka-http-mysql-template-build-docs.xml │ │ ├── default-scala-akka-http-mysql-template-build-optional.xml │ │ ├── default-scala-akka-http-mysql-template-build-plugin.xml │ │ ├── default-scala-akka-http-mysql-template-build-pom.xml │ │ ├── default-scala-akka-http-mysql-template-build-provided.xml │ │ ├── default-scala-akka-http-mysql-template-build-runtime-internal.xml │ │ ├── default-scala-akka-http-mysql-template-build-runtime.xml │ │ ├── default-scala-akka-http-mysql-template-build-scala-tool.xml │ │ ├── default-scala-akka-http-mysql-template-build-sources.xml │ │ ├── default-scala-akka-http-mysql-template-build-test-internal.xml │ │ ├── default-scala-akka-http-mysql-template-build-test.xml │ │ ├── ivy-report.css │ │ └── ivy-report.xsl │ └── streams │ ├── $global │ ├── $global │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── dependencyPositions │ │ └── $global │ │ │ └── streams │ │ │ └── update_cache_2.10 │ │ │ ├── input_dsp │ │ │ └── output_dsp │ ├── ivyConfiguration │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── ivySbt │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── projectDescriptors │ │ └── $global │ │ │ └── streams │ │ │ └── out │ └── update │ │ └── $global │ │ └── streams │ │ ├── out │ │ └── update_cache_2.10 │ │ ├── inputs │ │ └── output │ ├── compile │ ├── $global │ │ └── $global │ │ │ └── discoveredMainClasses │ │ │ └── data │ ├── compile │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── compileIncremental │ │ └── $global │ │ │ └── streams │ │ │ ├── export │ │ │ └── out │ ├── copyResources │ │ └── $global │ │ │ └── streams │ │ │ ├── copy-resources │ │ │ └── out │ ├── dependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── exportedProducts │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── internalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ └── runtime │ ├── dependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── exportedProducts │ └── $global │ │ └── streams │ │ └── export │ ├── externalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── fullClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── internalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── managedClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── unmanagedClasspath │ └── $global │ │ └── streams │ │ └── export │ └── unmanagedJars │ └── $global │ └── streams │ └── export ├── src └── main │ ├── resources │ ├── static │ │ └── css │ │ │ └── style.css │ └── templates │ │ └── index.beard │ └── scala │ └── Main.scala └── target ├── .history ├── resolution-cache ├── default │ ├── scala-akka-http-mysql-template$sbt_2.11 │ │ └── 1.0 │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ ├── scala-akka-http-mysql-template$sources_2.11 │ │ └── 1.0 │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── scala-akka-http-mysql-template_2.11 │ │ └── 1.0 │ │ ├── resolved.xml.properties │ │ └── resolved.xml.xml └── reports │ ├── default-scala-akka-http-mysql-template$sbt_2.11-default.xml │ ├── default-scala-akka-http-mysql-template$sources_2.11-default.xml │ ├── default-scala-akka-http-mysql-template_2.11-compile-internal.xml │ ├── default-scala-akka-http-mysql-template_2.11-compile.xml │ ├── default-scala-akka-http-mysql-template_2.11-docs.xml │ ├── default-scala-akka-http-mysql-template_2.11-optional.xml │ ├── default-scala-akka-http-mysql-template_2.11-plugin.xml │ ├── default-scala-akka-http-mysql-template_2.11-pom.xml │ ├── default-scala-akka-http-mysql-template_2.11-provided.xml │ ├── default-scala-akka-http-mysql-template_2.11-runtime-internal.xml │ ├── default-scala-akka-http-mysql-template_2.11-runtime.xml │ ├── default-scala-akka-http-mysql-template_2.11-scala-tool.xml │ ├── default-scala-akka-http-mysql-template_2.11-sources.xml │ ├── default-scala-akka-http-mysql-template_2.11-test-internal.xml │ ├── default-scala-akka-http-mysql-template_2.11-test.xml │ ├── ivy-report.css │ └── ivy-report.xsl ├── scala-2.11 └── classes │ ├── Main$$anonfun$1$$anonfun$apply$1$$anonfun$apply$2.class │ ├── Main$$anonfun$1$$anonfun$apply$1.class │ ├── Main$$anonfun$1.class │ ├── Main$$anonfun$2$$anonfun$apply$3.class │ ├── Main$$anonfun$2.class │ ├── Main$$anonfun$main$1.class │ ├── Main$$anonfun$main$2.class │ ├── Main$.class │ ├── Main.class │ ├── static │ └── css │ │ └── style.css │ └── templates │ └── index.beard └── streams ├── $global ├── $global │ ├── $global │ │ └── streams │ │ │ └── out │ └── dumpStructure │ │ └── $global │ │ └── streams │ │ └── out ├── clean │ └── $global │ │ └── streams │ │ └── out ├── dependencyPositions │ └── $global │ │ └── streams │ │ └── update_cache_2.11 │ │ ├── input_dsp │ │ └── output_dsp ├── ivyConfiguration │ └── $global │ │ └── streams │ │ └── out ├── ivySbt │ └── $global │ │ └── streams │ │ └── out ├── projectDescriptors │ └── $global │ │ └── streams │ │ └── out ├── update │ └── $global │ │ └── streams │ │ ├── out │ │ └── update_cache_2.11 │ │ ├── inputs │ │ └── output ├── updateClassifiers │ └── $global │ │ └── streams │ │ └── out └── updateSbtClassifiers │ └── $global │ └── streams │ └── out ├── compile ├── $global │ └── $global │ │ └── discoveredMainClasses │ │ └── data ├── compile │ └── $global │ │ └── streams │ │ └── out ├── compileIncremental │ └── $global │ │ └── streams │ │ ├── export │ │ └── out ├── copyResources │ └── $global │ │ └── streams │ │ ├── copy-resources │ │ └── out ├── dependencyClasspath │ └── $global │ │ └── streams │ │ └── export ├── exportedProducts │ └── $global │ │ └── streams │ │ └── export ├── externalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export ├── incCompileSetup │ └── $global │ │ └── streams │ │ └── inc_compile_2.11 ├── internalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export ├── mainClass │ └── $global │ │ └── streams │ │ └── out ├── managedClasspath │ └── $global │ │ └── streams │ │ └── export ├── run │ └── $global │ │ └── streams │ │ └── out ├── unmanagedClasspath │ └── $global │ │ └── streams │ │ └── export └── unmanagedJars │ └── $global │ └── streams │ └── export ├── runtime ├── dependencyClasspath │ └── $global │ │ └── streams │ │ └── export ├── exportedProducts │ └── $global │ │ └── streams │ │ └── export ├── externalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export ├── fullClasspath │ └── $global │ │ └── streams │ │ └── export ├── internalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export ├── managedClasspath │ └── $global │ │ └── streams │ │ └── export ├── unmanagedClasspath │ └── $global │ │ └── streams │ │ └── export └── unmanagedJars │ └── $global │ └── streams │ └── export └── test ├── externalDependencyClasspath └── $global │ └── streams │ └── export ├── managedClasspath └── $global │ └── streams │ └── export ├── unmanagedClasspath └── $global │ └── streams │ └── export └── unmanagedJars └── $global └── streams └── export /.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | target 3 | /.idea 4 | /.idea_modules 5 | /.classpath 6 | /.project 7 | /.settings 8 | /RUNNING_PID 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [AnyChart - Robust JavaScript/HTML5 Chart library for any project](https://www.anychart.com) 2 | # Scala Akka Http basic template 3 | 4 | This example shows how to run Anychart library with the Scala programming language using Akka Http and MySQL. 5 | 6 | ### Running 7 | To use this sample you must have Java, Scala, SBT and Mysql installed, 8 | if you do not have Java, please, visit [Java download page](https://java.com/download/); 9 | if you do not have Scala, please, visit [Scala official site](http://www.scala-lang.org/); 10 | if you do not have SBT, please, visit [SBT official site](http://www.scala-sbt.org/); 11 | if you do not have MySQL, please, visit [MySQL download page](https://dev.mysql.com/downloads/installer/) and follow [instructions](http://dev.mysql.com/doc/refman/5.7/en/installing.html) 12 | 13 | To check your Java installation, run following command in command line: 14 | ``` 15 | $ java -version 16 | java version "1.8.0_111" # sample output 17 | Java(TM) SE Runtime Environment (build 1.8.0_111-b14) 18 | Java HotSpot(TM) 64-Bit Server VM (build 25.111-b14, mixed mode) 19 | ``` 20 | To check your Scala installation, run following command in command line: 21 | ``` 22 | $ scala -version 23 | Scala code runner version 2.12.0 -- Copyright 2002-2016, LAMP/EPFL and Lightbend, Inc. # sample output 24 | ``` 25 | To check your SBT installation, run following command in command line: 26 | ``` 27 | $ sbt help 28 | [info] Set current project to user (in build file:/home/user/)... # sample output 29 | ``` 30 | To check your MySQL installation, run following command in command line: 31 | ``` 32 | $ mysql --version 33 | mysql Ver 14.14 Distrib 5.5.52, for debian-linux-gnu (x86_64) using readline 6. # sample output 34 | ``` 35 | 36 | To start this example run commands listed below. 37 | 38 | Clone the repository from github.com to your workspace folder: 39 | 40 | ``` 41 | $ git clone git@github.com:anychart-integrations/scala-akka-http-mysql-template.git 42 | ``` 43 | 44 | Navigate to the repository folder: 45 | ``` 46 | $ cd scala-akka-http-mysql-template 47 | ``` 48 | 49 | Set up MySQL database, use -u -p flags to provide your user name and password: 50 | ``` 51 | $ mysql < database_backup.sql 52 | ``` 53 | 54 | Run app: 55 | ``` 56 | $ sbt run 57 | ``` 58 | 59 | Open browser at http://localhost:8080/ 60 | 61 | 62 | ## Workspace 63 | Your workspace should look like: 64 | ``` 65 | scala-akka-http-mysql-template/ 66 | project/ 67 | project/ 68 | target/ 69 | build.properties 70 | plugins.sbt 71 | src/ 72 | main/ 73 | java/ 74 | resources/ 75 | static/ 76 | css/ 77 | style.css # css style 78 | templates/ 79 | index.beard # html template 80 | scala/ 81 | Main.scala # main scala app code 82 | test/ 83 | ... 84 | target/ 85 | .gitignore 86 | build.sbt # sbt application settings 87 | database_backup.sql # use this file to set your MySQL database 88 | LICENSE 89 | README.md 90 | ``` 91 | 92 | ## Technologies 93 | Platform - [Java](https://java.com/)
94 | Language - [Scala](http://www.scala-lang.org/)
95 | Database - [MySQL](https://www.mysql.com/)
96 | Web - [Akka Http](http://doc.akka.io/docs/akka-stream-and-http-experimental/1.0-M2/scala/http/)
97 | Template engine - [Beard](https://github.com/zalando/beard)
98 | Build tool - [SBT](http://www.scala-sbt.org/) 99 | 100 | ## Further Learning 101 | * [Documentation](https://docs.anychart.com) 102 | * [JavaScript API Reference](https://api.anychart.com) 103 | * [Code Playground](https://playground.anychart.com) 104 | * [Technical Support](https://www.anychart.com/support) 105 | 106 | ## License 107 | AnyChart Scala/Akka/MySQL integration sample includes two parts: 108 | - Code of the integration sample that allows to use Javascript library (in this case, AnyChart) with Scala language, Akka Http framework and MySQL database. 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/scala-akka-http-mysql-template/blob/master/LICENSE). 109 | - 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/). 110 | 111 | If you have any questions regarding licensing - please contact us. 112 | 113 | [![Analytics](https://ga-beacon.appspot.com/UA-228820-4/Integrations/scala-akka-http-mysql-template?pixel&useReferer)](https://github.com/igrigorik/ga-beacon) 114 | -------------------------------------------------------------------------------- /build.sbt: -------------------------------------------------------------------------------- 1 | name := "scala-akka-http-mysql-template" 2 | 3 | version := "1.1" 4 | 5 | scalaVersion := "2.11.8" 6 | 7 | libraryDependencies ++= Seq( 8 | "com.typesafe.akka" %% "akka-http-core" % "2.4.6", 9 | "com.typesafe.akka" %% "akka-http-experimental" % "2.4.6", 10 | "de.zalando" %% "beard" % "0.1.2", 11 | "mysql" % "mysql-connector-java" % "5.1.24", 12 | "org.json4s" %% "json4s-native" % "3.5.0" 13 | ) 14 | 15 | resolvers ++= Seq( 16 | "zalando-maven" at "https://dl.bintray.com/zalando/maven" 17 | ) -------------------------------------------------------------------------------- /database_backup.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE IF NOT EXISTS anychart_db; 2 | USE anychart_db; 3 | DROP PROCEDURE IF EXISTS init; 4 | DELIMITER // 5 | CREATE PROCEDURE init () 6 | LANGUAGE SQL 7 | BEGIN 8 | DECLARE user_exist, data_present INT; 9 | SET user_exist = (SELECT EXISTS (SELECT DISTINCT user FROM mysql.user WHERE user = "anychart_user")); 10 | IF user_exist = 0 THEN 11 | CREATE USER 'anychart_user'@'localhost' IDENTIFIED BY 'anychart_pass'; 12 | GRANT ALL PRIVILEGES ON anychart_db.* TO 'anychart_user'@'localhost'; 13 | FLUSH PRIVILEGES; 14 | END IF; 15 | CREATE TABLE IF NOT EXISTS fruits ( 16 | id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, 17 | name VARCHAR(64), 18 | value INT 19 | ); 20 | SET data_present = (SELECT COUNT(*) FROM fruits); 21 | IF data_present = 0 THEN 22 | INSERT INTO fruits (name, value) VALUES 23 | ('apples', 10), 24 | ('oranges', 20), 25 | ('bananas', 15), 26 | ('lemons', 5), 27 | ('pears', 3), 28 | ('apricots', 7), 29 | ('kiwis', 9), 30 | ('mangos', 12), 31 | ('figs', 4), 32 | ('limes', 8); 33 | END IF; 34 | END;// 35 | DELIMITER ; 36 | CALL init(); -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.8 -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- 1 | logLevel := Level.Warn -------------------------------------------------------------------------------- /project/project/target/config-classes/$a0fa1f18db796dda98ea$$anonfun$$sbtdef$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/project/target/config-classes/$a0fa1f18db796dda98ea$$anonfun$$sbtdef$1.class -------------------------------------------------------------------------------- /project/project/target/config-classes/$a0fa1f18db796dda98ea$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/project/target/config-classes/$a0fa1f18db796dda98ea$.class -------------------------------------------------------------------------------- /project/project/target/config-classes/$a0fa1f18db796dda98ea.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /project/project/target/config-classes/$a0fa1f18db796dda98ea.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/project/target/config-classes/$a0fa1f18db796dda98ea.class -------------------------------------------------------------------------------- /project/target/config-classes/$0957ed17f7288d283150$$anonfun$$sbtdef$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$0957ed17f7288d283150$$anonfun$$sbtdef$1.class -------------------------------------------------------------------------------- /project/target/config-classes/$0957ed17f7288d283150$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$0957ed17f7288d283150$.class -------------------------------------------------------------------------------- /project/target/config-classes/$0957ed17f7288d283150.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /project/target/config-classes/$0957ed17f7288d283150.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$0957ed17f7288d283150.class -------------------------------------------------------------------------------- /project/target/config-classes/$32e021d066d5ee0cd8e2$$anonfun$$sbtdef$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$32e021d066d5ee0cd8e2$$anonfun$$sbtdef$1.class -------------------------------------------------------------------------------- /project/target/config-classes/$32e021d066d5ee0cd8e2$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$32e021d066d5ee0cd8e2$.class -------------------------------------------------------------------------------- /project/target/config-classes/$32e021d066d5ee0cd8e2.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /project/target/config-classes/$32e021d066d5ee0cd8e2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$32e021d066d5ee0cd8e2.class -------------------------------------------------------------------------------- /project/target/config-classes/$3f4b464f3d166788dc64$$anonfun$$sbtdef$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$3f4b464f3d166788dc64$$anonfun$$sbtdef$1.class -------------------------------------------------------------------------------- /project/target/config-classes/$3f4b464f3d166788dc64$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$3f4b464f3d166788dc64$.class -------------------------------------------------------------------------------- /project/target/config-classes/$3f4b464f3d166788dc64.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /project/target/config-classes/$3f4b464f3d166788dc64.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$3f4b464f3d166788dc64.class -------------------------------------------------------------------------------- /project/target/config-classes/$91fbc2aca9585352e8b4$$anonfun$$sbtdef$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$91fbc2aca9585352e8b4$$anonfun$$sbtdef$1.class -------------------------------------------------------------------------------- /project/target/config-classes/$91fbc2aca9585352e8b4$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$91fbc2aca9585352e8b4$.class -------------------------------------------------------------------------------- /project/target/config-classes/$91fbc2aca9585352e8b4.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /project/target/config-classes/$91fbc2aca9585352e8b4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$91fbc2aca9585352e8b4.class -------------------------------------------------------------------------------- /project/target/config-classes/$f4b97cc595ccf7f61924$$anonfun$$sbtdef$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$f4b97cc595ccf7f61924$$anonfun$$sbtdef$1.class -------------------------------------------------------------------------------- /project/target/config-classes/$f4b97cc595ccf7f61924$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$f4b97cc595ccf7f61924$.class -------------------------------------------------------------------------------- /project/target/config-classes/$f4b97cc595ccf7f61924.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /project/target/config-classes/$f4b97cc595ccf7f61924.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/config-classes/$f4b97cc595ccf7f61924.class -------------------------------------------------------------------------------- /project/target/resolution-cache/default/scala-akka-http-mysql-template-build/scala_2.10/sbt_0.13/0.1-SNAPSHOT/resolved.xml.properties: -------------------------------------------------------------------------------- 1 | #default#scala-akka-http-mysql-template-build;0.1-SNAPSHOT resolved revisions 2 | #Thu Nov 10 11:58:58 KRAT 2016 3 | +organisation\:\#@\#\:+org.scala-lang\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+scala-compiler\:\#@\#\:+revision\:\#@\#\:+2.10.4\:\#@\#\:=2.10.4 release 2.10.4 null 4 | +organisation\:\#@\#\:+org.scala-lang\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+scala-library\:\#@\#\:+revision\:\#@\#\:+2.10.4\:\#@\#\:=2.10.4 ? 2.10.4 null 5 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+sbt\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 6 | -------------------------------------------------------------------------------- /project/target/resolution-cache/default/scala-akka-http-mysql-template-build/scala_2.10/sbt_0.13/0.1-SNAPSHOT/resolved.xml.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | scala-akka-http-mysql-template-build 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/default-scala-akka-http-mysql-template-build-compile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/default-scala-akka-http-mysql-template-build-docs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/default-scala-akka-http-mysql-template-build-optional.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/default-scala-akka-http-mysql-template-build-plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/default-scala-akka-http-mysql-template-build-pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/default-scala-akka-http-mysql-template-build-runtime-internal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/default-scala-akka-http-mysql-template-build-runtime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/default-scala-akka-http-mysql-template-build-scala-tool.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/default-scala-akka-http-mysql-template-build-sources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/default-scala-akka-http-mysql-template-build-test.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | */ 18 | 19 | body { 20 | font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif; 21 | font-size:small; 22 | } 23 | 24 | div#logo { 25 | float: right; 26 | padding-left: 10px; 27 | padding-bottom: 10px; 28 | background: white; 29 | text-align: center; 30 | } 31 | 32 | #logo img { 33 | border: 0; 34 | } 35 | 36 | div#date { 37 | font-style: italic; 38 | padding-left: 60px; 39 | padding-bottom: 40px; 40 | } 41 | 42 | 43 | h1 { 44 | margin-bottom:2px; 45 | 46 | border-color:#7A9437; 47 | border-style:solid; 48 | border-width:0 0 3px 0; 49 | } 50 | 51 | span#module { 52 | color:#7A9437; 53 | text-decoration:none; 54 | } 55 | 56 | span#organisation { 57 | color:black; 58 | text-decoration:none; 59 | } 60 | 61 | #confmenu { 62 | color: #000; 63 | border-bottom: 2px solid black; 64 | margin: 12px 0px 0px 0px; 65 | padding: 0px; 66 | z-index: 1; 67 | padding-left: 10px 68 | } 69 | 70 | #confmenu li { 71 | display: inline; 72 | overflow: hidden; 73 | list-style-type: none; 74 | } 75 | 76 | #confmenu a, a.active { 77 | color: #DEDECF; 78 | background: #898B5E; 79 | font: bold 1em "Trebuchet MS", Arial, sans-serif; 80 | border: 2px solid black; 81 | padding: 2px 5px 0px 5px; 82 | text-decoration: none; 83 | } 84 | 85 | /* 86 | background: #ABAD85 #CED4BD 87 | background: #DEE4CD 88 | */ 89 | 90 | #confmenu a.active { 91 | color: #7A9437; 92 | background: #DEE4CD; 93 | border-bottom: 3px solid #DEE4CD; 94 | } 95 | 96 | #confmenu a:hover { 97 | color: #fff; 98 | background: #ADC09F; 99 | } 100 | 101 | #confmenu a:visited { 102 | color: #DEDECF; 103 | } 104 | 105 | #confmenu a.active:visited { 106 | color: #7A9437; 107 | } 108 | 109 | #confmenu a.active:hover { 110 | background: #DEE4CD; 111 | color: #DEDECF; 112 | } 113 | 114 | #content { 115 | background: #DEE4CD; 116 | padding: 20px; 117 | border: 2px solid black; 118 | border-top: none; 119 | z-index: 2; 120 | } 121 | 122 | #content a { 123 | text-decoration: none; 124 | color: #E8E9BE; 125 | } 126 | 127 | #content a:hover { 128 | background: #898B5E; 129 | } 130 | 131 | 132 | h2 { 133 | margin-bottom:2px; 134 | font-size:medium; 135 | 136 | border-color:#7A9437; 137 | border-style:solid; 138 | border-width:0 0 2px 0; 139 | } 140 | 141 | h3 { 142 | margin-top:30px; 143 | margin-bottom:2px; 144 | padding: 5 5 5 0; 145 | font-size: 24px; 146 | border-style:solid; 147 | border-width:0 0 2px 0; 148 | } 149 | 150 | h4 { 151 | margin-bottom:2px; 152 | margin-top:2px; 153 | font-size:medium; 154 | 155 | border-color:#7A9437; 156 | border-style:dashed; 157 | border-width:0 0 1px 0; 158 | } 159 | 160 | h5 { 161 | margin-bottom:2px; 162 | margin-top:2px; 163 | margin-left:20px; 164 | font-size:medium; 165 | } 166 | 167 | span.resolved { 168 | padding-left: 15px; 169 | font-weight: 500; 170 | font-size: small; 171 | } 172 | 173 | 174 | #content table { 175 | border-collapse:collapse; 176 | width:90%; 177 | margin:auto; 178 | margin-top: 5px; 179 | } 180 | #content thead { 181 | background-color:#CED4BD; 182 | border:1px solid #7A9437; 183 | } 184 | #content tbody { 185 | border-collapse:collapse; 186 | background-color:#FFFFFF; 187 | border:1px solid #7A9437; 188 | } 189 | 190 | #content th { 191 | font-family:monospace; 192 | border:1px solid #7A9437; 193 | padding:5px; 194 | } 195 | 196 | #content td { 197 | border:1px dotted #7A9437; 198 | padding:0 3 0 3; 199 | } 200 | 201 | #content table a { 202 | color:#7A9437; 203 | text-decoration:none; 204 | } 205 | 206 | #content table a:hover { 207 | background-color:#CED4BD; 208 | color:#7A9437; 209 | } 210 | 211 | 212 | 213 | table.deps { 214 | border-collapse:collapse; 215 | width:90%; 216 | margin:auto; 217 | margin-top: 5px; 218 | } 219 | 220 | table.deps thead { 221 | background-color:#CED4BD; 222 | border:1px solid #7A9437; 223 | } 224 | table.deps tbody { 225 | border-collapse:collapse; 226 | background-color:#FFFFFF; 227 | border:1px solid #7A9437; 228 | } 229 | 230 | table.deps th { 231 | font-family:monospace; 232 | border:1px solid #7A9437; 233 | padding:2; 234 | } 235 | 236 | table.deps td { 237 | border:1px dotted #7A9437; 238 | padding:0 3 0 3; 239 | } 240 | 241 | 242 | 243 | 244 | 245 | table.header { 246 | border:0; 247 | width:90%; 248 | margin:auto; 249 | margin-top: 5px; 250 | } 251 | 252 | table.header thead { 253 | border:0; 254 | } 255 | table.header tbody { 256 | border:0; 257 | } 258 | table.header tr { 259 | padding:0px; 260 | border:0; 261 | } 262 | table.header td { 263 | padding:0 3 0 3; 264 | border:0; 265 | } 266 | 267 | td.title { 268 | width:150px; 269 | margin-right:15px; 270 | 271 | font-size:small; 272 | font-weight:700; 273 | } 274 | 275 | td.title:first-letter { 276 | color:#7A9437; 277 | background-color:transparent; 278 | } 279 | 280 | -------------------------------------------------------------------------------- /project/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 |
51 | No dependency 52 |
53 |
54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 |
ModuleRevisionStatusResolverDefaultLicensesSize
78 |
79 |
80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | #- 96 | 97 | 98 | by 99 | 100 | 101 | 102 | 103 | 104 | #-- 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | kB 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | searched 165 | 166 | 167 | downloaded 168 | 169 | 170 | 171 | http://ant.apache.org/ivy/images/evicted.gif 172 | evicted 173 | evicted by 174 | 175 | 176 | 177 | 178 | http://ant.apache.org/ivy/images/error.gif 179 | error 180 | error: 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | #- 194 | 195 | by 196 | 197 | 198 | 199 | 200 | 201 | #-- 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 |
  • 233 | 234 | 235 | active 236 | 237 | --. 238 | 239 | 240 |
  • 241 |
    242 | 243 | 244 | 245 | 246 | -- 247 | 248 | :: 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | Ivy report :: <xsl:value-of select="info/@module"/> by <xsl:value-of select="info/@organisation"/> :: <xsl:value-of select="info/@conf"/> 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 |

    265 | 266 | - 267 | 268 | 269 | 270 | 271 | by 272 | 273 | 274 | 275 |

    276 |
    277 | resolved on 278 | 279 | 280 | 281 |
    282 |
      283 | 284 | 285 | 286 |
    287 | 288 |
    289 |

    Dependencies Stats

    290 | 291 | 292 | 297 | 300 | 303 |
    Modules
    Revisions 293 | ( searched searched, 294 | downloaded downloaded, 295 | evicted evicted, 296 | errors error)
    Artifacts 298 | ( downloaded, 299 | failed)
    Artifacts size kB 301 | ( kB downloaded, 302 | kB in cache)
    304 | 305 | 306 |

    Errors

    307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 |
    ModuleRevisionError
    326 |
    327 | 328 | 329 |

    Conflicts

    330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 349 | 358 | 369 | 370 | 371 | 372 |
    ModuleSelectedEvicted
    342 | 343 | #- 344 | 345 | by 346 | 347 | 348 | 350 | 351 | 352 | #-- 353 | 354 | 355 | 356 | 357 | 359 | 360 | 361 | #-- 362 | 363 | 364 | 365 | 366 | 367 | 368 |
    373 |
    374 | 375 |

    Dependencies Overview

    376 | 377 | 378 | 379 | 380 | 381 | 382 |

    Details

    383 | 384 |

    385 | 386 | - 387 | 388 | by 389 |

    390 | 391 |

    392 | 393 | -- 394 | 395 | Revision: 396 | 397 | 398 | 399 | 400 | 401 |

    402 | 403 | 404 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 418 | 419 | 424 | 425 | 426 | 437 | 438 |
    Home Page 405 | 406 | 407 | 408 |
    Status
    Publication
    Resolver
    Configurations
    Artifacts size kB 416 | ( kB downloaded, 417 | kB in cache)
    Licenses 420 | 421 | 422 | 423 |
    Evicted by 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | in conflict manager 436 |
    439 |
    Required by
    440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 460 | 461 | 462 | 463 | 464 | 465 | 466 |
    OrganisationNameRevisionIn ConfigurationsAsked Revision
    455 | 456 | #- 457 | 458 | 459 |
    467 | 468 | 469 |
    Dependencies
    470 | 471 | 472 | 473 | 474 | 475 |
    Artifacts
    476 | 477 |
    478 | No artifact 479 |
    480 |
    481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 |
    NameTypeExtDownloadSize
    kB
    504 |
    505 | 506 |
    507 |
    508 |
    509 |
    510 | 511 | 512 |
    513 | 514 |
    515 | -------------------------------------------------------------------------------- /project/target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/streams/$global/$global/$global/streams/out -------------------------------------------------------------------------------- /project/target/streams/$global/dependencyPositions/$global/streams/update_cache_2.10/input_dsp: -------------------------------------------------------------------------------- 1 | org.scala-lang scala-library2.10.4provided -------------------------------------------------------------------------------- /project/target/streams/$global/dependencyPositions/$global/streams/update_cache_2.10/output_dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/streams/$global/dependencyPositions/$global/streams/update_cache_2.10/output_dsp -------------------------------------------------------------------------------- /project/target/streams/$global/ivyConfiguration/$global/streams/out: -------------------------------------------------------------------------------- 1 | [debug] Other repositories: 2 | [debug] Default repositories: 3 | [debug] Using inline dependencies specified in Scala. 4 | -------------------------------------------------------------------------------- /project/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/streams/$global/ivySbt/$global/streams/out -------------------------------------------------------------------------------- /project/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/streams/$global/projectDescriptors/$global/streams/out -------------------------------------------------------------------------------- /project/target/streams/$global/update/$global/streams/update_cache_2.10/inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/streams/$global/update/$global/streams/update_cache_2.10/inputs -------------------------------------------------------------------------------- /project/target/streams/$global/update/$global/streams/update_cache_2.10/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/streams/$global/update/$global/streams/update_cache_2.10/output -------------------------------------------------------------------------------- /project/target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/streams/compile/compile/$global/streams/out -------------------------------------------------------------------------------- /project/target/streams/compile/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/streams/compile/compileIncremental/$global/streams/export -------------------------------------------------------------------------------- /project/target/streams/compile/compileIncremental/$global/streams/out: -------------------------------------------------------------------------------- 1 | [debug]  2 | [debug] Initial source changes:  3 | [debug]  removed:Set() 4 | [debug]  added: Set() 5 | [debug]  modified: Set() 6 | [debug] Removed products: Set() 7 | [debug] External API changes: API Changes: Set() 8 | [debug] Modified binary dependencies: Set() 9 | [debug] Initial directly invalidated sources: Set() 10 | [debug]  11 | [debug] Sources indirectly invalidated by: 12 | [debug]  product: Set() 13 | [debug]  binary dep: Set() 14 | [debug]  external source: Set() 15 | [debug] All initially invalidated sources: Set() 16 | -------------------------------------------------------------------------------- /project/target/streams/compile/copyResources/$global/streams/copy-resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/project/target/streams/compile/copyResources/$global/streams/copy-resources -------------------------------------------------------------------------------- /project/target/streams/compile/copyResources/$global/streams/out: -------------------------------------------------------------------------------- 1 | [debug] Copy resource mappings:  2 | [debug]   3 | -------------------------------------------------------------------------------- /project/target/streams/compile/dependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /home/igor/.sbt/boot/scala-2.10.4/lib/scala-library.jar:/home/igor/.ivy2/cache/org.scala-sbt/sbt/jars/sbt-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/main/jars/main-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/actions/jars/actions-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/classpath/jars/classpath-0.13.8.jar:/home/igor/.sbt/boot/scala-2.10.4/lib/scala-compiler.jar:/home/igor/.sbt/boot/scala-2.10.4/lib/scala-reflect.jar:/home/igor/.ivy2/cache/org.scala-sbt/launcher-interface/jars/launcher-interface-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/interface/jars/interface-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/io/jars/io-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/control/jars/control-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/completion/jars/completion-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/collections/jars/collections-0.13.8.jar:/home/igor/.ivy2/cache/jline/jline/jars/jline-2.11.jar:/home/igor/.ivy2/cache/org.scala-sbt/api/jars/api-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-integration/jars/compiler-integration-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/incremental-compiler/jars/incremental-compiler-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/logging/jars/logging-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/process/jars/process-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/relation/jars/relation-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compile/jars/compile-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/classfile/jars/classfile-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/persist/jars/persist-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-tools.sbinary/sbinary_2.10/jars/sbinary_2.10-0.4.2.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-ivy-integration/jars/compiler-ivy-integration-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/ivy/jars/ivy-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/cross/jars/cross-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt.ivy/ivy/jars/ivy-2.3.0-sbt-fccfbd44c9f64523b61398a0155784dcbaeae28f.jar:/home/igor/.ivy2/cache/com.jcraft/jsch/jars/jsch-0.1.46.jar:/home/igor/.ivy2/cache/org.scala-sbt/serialization_2.10/jars/serialization_2.10-0.1.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-pickling_2.10/jars/scala-pickling_2.10-0.10.0.jar:/home/igor/.ivy2/cache/org.scalamacros/quasiquotes_2.10/jars/quasiquotes_2.10-2.0.1.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.10/jars/json4s-core_2.10-3.2.10.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.10/jars/json4s-ast_2.10-3.2.10.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/jars/paranamer-2.6.jar:/home/igor/.ivy2/cache/org.spire-math/jawn-parser_2.10/jars/jawn-parser_2.10-0.6.0.jar:/home/igor/.ivy2/cache/org.spire-math/json4s-support_2.10/jars/json4s-support_2.10-0.6.0.jar:/home/igor/.ivy2/cache/org.scala-sbt/run/jars/run-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/task-system/jars/task-system-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/tasks/jars/tasks-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/tracking/jars/tracking-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/cache/jars/cache-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/testing/jars/testing-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/test-agent/jars/test-agent-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/test-interface/jars/test-interface-1.0.jar:/home/igor/.ivy2/cache/org.scala-sbt/main-settings/jars/main-settings-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/apply-macro/jars/apply-macro-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/command/jars/command-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/logic/jars/logic-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-interface/jars/compiler-interface-src-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-interface/jars/compiler-interface-bin-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/precompiled-2_8_2/jars/compiler-interface-bin-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/precompiled-2_9_2/jars/compiler-interface-bin-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/precompiled-2_9_3/jars/compiler-interface-bin-0.13.8.jar 2 | -------------------------------------------------------------------------------- /project/target/streams/compile/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- 1 | /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/project/target/scala-2.10/sbt-0.13/classes 2 | -------------------------------------------------------------------------------- /project/target/streams/compile/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /home/igor/.sbt/boot/scala-2.10.4/lib/scala-library.jar:/home/igor/.ivy2/cache/org.scala-sbt/sbt/jars/sbt-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/main/jars/main-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/actions/jars/actions-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/classpath/jars/classpath-0.13.8.jar:/home/igor/.sbt/boot/scala-2.10.4/lib/scala-compiler.jar:/home/igor/.sbt/boot/scala-2.10.4/lib/scala-reflect.jar:/home/igor/.ivy2/cache/org.scala-sbt/launcher-interface/jars/launcher-interface-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/interface/jars/interface-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/io/jars/io-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/control/jars/control-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/completion/jars/completion-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/collections/jars/collections-0.13.8.jar:/home/igor/.ivy2/cache/jline/jline/jars/jline-2.11.jar:/home/igor/.ivy2/cache/org.scala-sbt/api/jars/api-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-integration/jars/compiler-integration-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/incremental-compiler/jars/incremental-compiler-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/logging/jars/logging-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/process/jars/process-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/relation/jars/relation-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compile/jars/compile-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/classfile/jars/classfile-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/persist/jars/persist-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-tools.sbinary/sbinary_2.10/jars/sbinary_2.10-0.4.2.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-ivy-integration/jars/compiler-ivy-integration-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/ivy/jars/ivy-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/cross/jars/cross-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt.ivy/ivy/jars/ivy-2.3.0-sbt-fccfbd44c9f64523b61398a0155784dcbaeae28f.jar:/home/igor/.ivy2/cache/com.jcraft/jsch/jars/jsch-0.1.46.jar:/home/igor/.ivy2/cache/org.scala-sbt/serialization_2.10/jars/serialization_2.10-0.1.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-pickling_2.10/jars/scala-pickling_2.10-0.10.0.jar:/home/igor/.ivy2/cache/org.scalamacros/quasiquotes_2.10/jars/quasiquotes_2.10-2.0.1.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.10/jars/json4s-core_2.10-3.2.10.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.10/jars/json4s-ast_2.10-3.2.10.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/jars/paranamer-2.6.jar:/home/igor/.ivy2/cache/org.spire-math/jawn-parser_2.10/jars/jawn-parser_2.10-0.6.0.jar:/home/igor/.ivy2/cache/org.spire-math/json4s-support_2.10/jars/json4s-support_2.10-0.6.0.jar:/home/igor/.ivy2/cache/org.scala-sbt/run/jars/run-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/task-system/jars/task-system-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/tasks/jars/tasks-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/tracking/jars/tracking-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/cache/jars/cache-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/testing/jars/testing-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/test-agent/jars/test-agent-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/test-interface/jars/test-interface-1.0.jar:/home/igor/.ivy2/cache/org.scala-sbt/main-settings/jars/main-settings-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/apply-macro/jars/apply-macro-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/command/jars/command-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/logic/jars/logic-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-interface/jars/compiler-interface-src-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-interface/jars/compiler-interface-bin-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/precompiled-2_8_2/jars/compiler-interface-bin-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/precompiled-2_9_2/jars/compiler-interface-bin-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/precompiled-2_9_3/jars/compiler-interface-bin-0.13.8.jar 2 | -------------------------------------------------------------------------------- /project/target/streams/compile/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project/target/streams/compile/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /home/igor/.sbt/boot/scala-2.10.4/lib/scala-library.jar:/home/igor/.ivy2/cache/org.scala-sbt/sbt/jars/sbt-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/main/jars/main-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/actions/jars/actions-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/classpath/jars/classpath-0.13.8.jar:/home/igor/.sbt/boot/scala-2.10.4/lib/scala-compiler.jar:/home/igor/.sbt/boot/scala-2.10.4/lib/scala-reflect.jar:/home/igor/.ivy2/cache/org.scala-sbt/launcher-interface/jars/launcher-interface-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/interface/jars/interface-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/io/jars/io-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/control/jars/control-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/completion/jars/completion-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/collections/jars/collections-0.13.8.jar:/home/igor/.ivy2/cache/jline/jline/jars/jline-2.11.jar:/home/igor/.ivy2/cache/org.scala-sbt/api/jars/api-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-integration/jars/compiler-integration-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/incremental-compiler/jars/incremental-compiler-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/logging/jars/logging-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/process/jars/process-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/relation/jars/relation-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compile/jars/compile-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/classfile/jars/classfile-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/persist/jars/persist-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-tools.sbinary/sbinary_2.10/jars/sbinary_2.10-0.4.2.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-ivy-integration/jars/compiler-ivy-integration-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/ivy/jars/ivy-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/cross/jars/cross-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt.ivy/ivy/jars/ivy-2.3.0-sbt-fccfbd44c9f64523b61398a0155784dcbaeae28f.jar:/home/igor/.ivy2/cache/com.jcraft/jsch/jars/jsch-0.1.46.jar:/home/igor/.ivy2/cache/org.scala-sbt/serialization_2.10/jars/serialization_2.10-0.1.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-pickling_2.10/jars/scala-pickling_2.10-0.10.0.jar:/home/igor/.ivy2/cache/org.scalamacros/quasiquotes_2.10/jars/quasiquotes_2.10-2.0.1.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.10/jars/json4s-core_2.10-3.2.10.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.10/jars/json4s-ast_2.10-3.2.10.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/jars/paranamer-2.6.jar:/home/igor/.ivy2/cache/org.spire-math/jawn-parser_2.10/jars/jawn-parser_2.10-0.6.0.jar:/home/igor/.ivy2/cache/org.spire-math/json4s-support_2.10/jars/json4s-support_2.10-0.6.0.jar:/home/igor/.ivy2/cache/org.scala-sbt/run/jars/run-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/task-system/jars/task-system-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/tasks/jars/tasks-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/tracking/jars/tracking-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/cache/jars/cache-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/testing/jars/testing-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/test-agent/jars/test-agent-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/test-interface/jars/test-interface-1.0.jar:/home/igor/.ivy2/cache/org.scala-sbt/main-settings/jars/main-settings-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/apply-macro/jars/apply-macro-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/command/jars/command-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/logic/jars/logic-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-interface/jars/compiler-interface-src-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/compiler-interface/jars/compiler-interface-bin-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/precompiled-2_8_2/jars/compiler-interface-bin-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/precompiled-2_9_2/jars/compiler-interface-bin-0.13.8.jar:/home/igor/.ivy2/cache/org.scala-sbt/precompiled-2_9_3/jars/compiler-interface-bin-0.13.8.jar 2 | -------------------------------------------------------------------------------- /project/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project/target/streams/runtime/dependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/project/target/scala-2.10/sbt-0.13/classes 2 | -------------------------------------------------------------------------------- /project/target/streams/runtime/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- 1 | /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/project/target/scala-2.10/sbt-0.13/classes 2 | -------------------------------------------------------------------------------- /project/target/streams/runtime/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project/target/streams/runtime/fullClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/project/target/scala-2.10/sbt-0.13/classes 2 | -------------------------------------------------------------------------------- /project/target/streams/runtime/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/project/target/scala-2.10/sbt-0.13/classes 2 | -------------------------------------------------------------------------------- /project/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/resources/static/css/style.css: -------------------------------------------------------------------------------- 1 | html, body, #container { 2 | width: 400px; 3 | height: 400px; 4 | margin: 0; 5 | padding: 0; 6 | } -------------------------------------------------------------------------------- /src/main/resources/templates/index.beard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ title }} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
    15 | 21 | 22 | -------------------------------------------------------------------------------- /src/main/scala/Main.scala: -------------------------------------------------------------------------------- 1 | import java.sql.{Connection, DriverManager} 2 | 3 | import akka.actor._ 4 | import akka.http.scaladsl.Http 5 | import akka.http.scaladsl.model.{ContentTypes, HttpEntity} 6 | import akka.http.scaladsl.server.Directives._ 7 | import akka.stream.ActorMaterializer 8 | 9 | import scala.io.Source 10 | import scala.io.StdIn 11 | import de.zalando.beard.renderer._ 12 | import org.json4s.DefaultFormats 13 | import org.json4s.native.Json 14 | 15 | import scala.collection.mutable.ListBuffer 16 | 17 | 18 | object Main { 19 | 20 | def chartData():String = { 21 | // connect to the database named "mysql" on the localhost 22 | val driver = "com.mysql.jdbc.Driver" 23 | val url = "jdbc:mysql://localhost/anychart_db" 24 | val username = "anychart_user" 25 | val password = "anychart_pass" 26 | 27 | var connection:Connection = null 28 | var fruits = new ListBuffer[Map[String, Any]]() 29 | try { 30 | // make the connection 31 | Class.forName(driver) 32 | connection = DriverManager.getConnection(url, username, password) 33 | // create the statement, and run the select query 34 | val statement = connection.createStatement() 35 | val resultSet = statement.executeQuery("SELECT name, value FROM fruits ORDER BY value DESC LIMIT 5") 36 | while ( resultSet.next() ) { 37 | val name = resultSet.getString("name") 38 | val value = resultSet.getInt("value") 39 | fruits += Map("name" -> name, "value" -> value) 40 | } 41 | } catch { 42 | case e: Throwable => e.printStackTrace 43 | } 44 | connection.close() 45 | Json(DefaultFormats).write(fruits.toList) 46 | } 47 | 48 | 49 | def setTemplate(): String ={ 50 | val loader = new ClasspathTemplateLoader( 51 | templatePrefix = "/templates/", 52 | templateSuffix = ".beard" 53 | ) 54 | val templateCompiler = new CustomizableTemplateCompiler(templateLoader = loader) 55 | val template = templateCompiler.compile(TemplateName("index")).get 56 | 57 | val context: Map[String, Object] = Map("title" -> "Scala Akka Http template", 58 | "chartTitle" -> "Top 5 fruits", 59 | "chartData" -> chartData()) 60 | 61 | val renderer = new BeardTemplateRenderer(templateCompiler) 62 | val result = renderer.render(template, 63 | StringWriterRenderResult(), 64 | context) 65 | result.toString 66 | } 67 | 68 | 69 | def main(args: Array[String]) { 70 | implicit val system = ActorSystem("my-system") 71 | implicit val materializer = ActorMaterializer() 72 | 73 | // needed for the future flatMap/onComplete in the end 74 | implicit val executionContext = system.dispatcher 75 | 76 | val route = 77 | pathSingleSlash { 78 | get { 79 | complete(HttpEntity(ContentTypes.`text/html(UTF-8)`, setTemplate())) 80 | } 81 | } ~ pathPrefix("static") { 82 | // optionally compresses the response with Gzip or Deflate 83 | // if the client accepts compressed responses 84 | encodeResponse { 85 | // serve up static content from a JAR resource 86 | getFromResourceDirectory("static") 87 | } 88 | } 89 | 90 | val bindingFuture = Http().bindAndHandle(route, "localhost", 8080) 91 | 92 | println(s"Server online at http://localhost:8080/\nPress RETURN to stop...") 93 | StdIn.readLine() // let it run until user presses return 94 | bindingFuture 95 | .flatMap(_.unbind()) // trigger unbinding from the port 96 | .onComplete(_ => system.terminate()) // and shutdown when done 97 | } 98 | 99 | } 100 | 101 | -------------------------------------------------------------------------------- /target/.history: -------------------------------------------------------------------------------- 1 | compile 2 | clean 3 | compile 4 | quit 5 | q 6 | run 7 | clean 8 | quit 9 | run 10 | compile 11 | run 12 | compile 13 | run 14 | compile 15 | run 16 | compile 17 | run 18 | compile 19 | run 20 | compile 21 | run 22 | compile 23 | run 24 | compile 25 | run 26 | compile 27 | run 28 | compile 29 | run 30 | compile 31 | run 32 | compile 33 | run 34 | compile 35 | run 36 | compile 37 | run 38 | compile 39 | run 40 | clean 41 | compile 42 | run 43 | sbt run 44 | run 45 | -------------------------------------------------------------------------------- /target/resolution-cache/default/scala-akka-http-mysql-template$sbt_2.11/1.0/resolved.xml.properties: -------------------------------------------------------------------------------- 1 | #default#scala-akka-http-mysql-template$sbt_2.11;1.0 resolved revisions 2 | #Thu Nov 10 15:11:25 KRAT 2016 3 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+sbt\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 4 | -------------------------------------------------------------------------------- /target/resolution-cache/default/scala-akka-http-mysql-template$sbt_2.11/1.0/resolved.xml.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /target/resolution-cache/default/scala-akka-http-mysql-template$sources_2.11/1.0/resolved.xml.properties: -------------------------------------------------------------------------------- 1 | #default#scala-akka-http-mysql-template$sources_2.11;1.0 resolved revisions 2 | #Thu Nov 10 15:11:25 KRAT 2016 3 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+relation\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 4 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+apply-macro\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 5 | +organisation\:\#@\#\:+org.scala-sbt.ivy\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+ivy\:\#@\#\:+revision\:\#@\#\:+2.3.0-sbt-fccfbd44c9f64523b61398a0155784dcbaeae28f\:\#@\#\:=2.3.0-sbt-fccfbd44c9f64523b61398a0155784dcbaeae28f release 2.3.0-sbt-fccfbd44c9f64523b61398a0155784dcbaeae28f null 6 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+tracking\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 7 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+precompiled-2_9_3\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 8 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+process\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 9 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+incremental-compiler\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 10 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+test-interface\:\#@\#\:+revision\:\#@\#\:+1.0\:\#@\#\:=1.0 release 1.0 null 11 | +organisation\:\#@\#\:+org.spire-math\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+jawn-parser_2.10\:\#@\#\:+revision\:\#@\#\:+0.6.0\:\#@\#\:=0.6.0 release 0.6.0 null 12 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+compiler-integration\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 13 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+compile\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 14 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+logging\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 15 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+ivy\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 16 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+classpath\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 17 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+testing\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 18 | +organisation\:\#@\#\:+org.spire-math\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+json4s-support_2.10\:\#@\#\:+revision\:\#@\#\:+0.6.0\:\#@\#\:=0.6.0 release 0.6.0 null 19 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+control\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 20 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+io\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 21 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+precompiled-2_9_2\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 22 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+logic\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 23 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+command\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 24 | +organisation\:\#@\#\:+org.json4s\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+json4s-ast_2.10\:\#@\#\:+revision\:\#@\#\:+3.2.10\:\#@\#\:=3.2.10 release 3.2.10 null 25 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+run\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 26 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+cross\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 27 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+compiler-ivy-integration\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 28 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+api\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 29 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+collections\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 30 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+component\:\#@\#\:+xsbti\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+interface\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 ? 0.13.8 null 31 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+tasks\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 32 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+cache\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 33 | +organisation\:\#@\#\:+org.scala-lang\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+scala-reflect\:\#@\#\:+revision\:\#@\#\:+2.10.4\:\#@\#\:+info.apiURL\:\#@\#\:+http\://www.scala-lang.org/api/2.10.4/\:\#@\#\:=2.10.4 ? 2.10.4 null 34 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+task-system\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 35 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+serialization_2.10\:\#@\#\:+revision\:\#@\#\:+0.1.1\:\#@\#\:=0.1.1 integration 0.1.1 null 36 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+actions\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 37 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+sbt\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 38 | +organisation\:\#@\#\:+org.scala-lang.modules\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+scala-pickling_2.10\:\#@\#\:+revision\:\#@\#\:+0.10.0\:\#@\#\:=0.10.0 release 0.10.0 null 39 | +organisation\:\#@\#\:+org.json4s\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+json4s-core_2.10\:\#@\#\:+revision\:\#@\#\:+3.2.10\:\#@\#\:=3.2.10 release 3.2.10 null 40 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+test-agent\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 41 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+persist\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 42 | +organisation\:\#@\#\:+org.scala-lang\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+scala-library\:\#@\#\:+revision\:\#@\#\:+2.10.4\:\#@\#\:+info.apiURL\:\#@\#\:+http\://www.scala-lang.org/api/2.10.4/\:\#@\#\:=2.10.4 ? 2.10.4 null 43 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+main-settings\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 44 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+classfile\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 45 | +organisation\:\#@\#\:+org.scala-tools.sbinary\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+sbinary_2.10\:\#@\#\:+revision\:\#@\#\:+0.4.2\:\#@\#\:=0.4.2 release 0.4.2 null 46 | +organisation\:\#@\#\:+org.scala-lang\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+scala-compiler\:\#@\#\:+revision\:\#@\#\:+2.10.4\:\#@\#\:=2.10.4 release 2.10.4 null 47 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+completion\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 48 | +organisation\:\#@\#\:+com.jcraft\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+jsch\:\#@\#\:+revision\:\#@\#\:+0.1.46\:\#@\#\:=0.1.46 release 0.1.46 null 49 | +organisation\:\#@\#\:+jline\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+jline\:\#@\#\:+revision\:\#@\#\:+2.11\:\#@\#\:=2.11 release 2.11 null 50 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+main\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 51 | +organisation\:\#@\#\:+org.scalamacros\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+quasiquotes_2.10\:\#@\#\:+revision\:\#@\#\:+2.0.1\:\#@\#\:=2.0.1 release 2.0.1 null 52 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+precompiled-2_8_2\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 53 | +organisation\:\#@\#\:+com.thoughtworks.paranamer\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+paranamer\:\#@\#\:+revision\:\#@\#\:+2.6\:\#@\#\:=2.6 release 2.6 null 54 | +organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+launcher-interface\:\#@\#\:+revision\:\#@\#\:+0.13.8\:\#@\#\:=0.13.8 release 0.13.8 null 55 | -------------------------------------------------------------------------------- /target/resolution-cache/default/scala-akka-http-mysql-template$sources_2.11/1.0/resolved.xml.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | -------------------------------------------------------------------------------- /target/resolution-cache/default/scala-akka-http-mysql-template_2.11/1.0/resolved.xml.properties: -------------------------------------------------------------------------------- 1 | #default#scala-akka-http-mysql-template_2.11;1.0 resolved revisions 2 | #Thu Nov 10 15:10:31 KRAT 2016 3 | +organisation\:\#@\#\:+org.json4s\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+json4s-native_2.11\:\#@\#\:+revision\:\#@\#\:+3.5.0\:\#@\#\:=3.5.0 release 3.5.0 null 4 | +organisation\:\#@\#\:+org.scala-lang\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+scala-library\:\#@\#\:+revision\:\#@\#\:+2.11.8\:\#@\#\:=2.11.8 ? 2.11.8 null 5 | +organisation\:\#@\#\:+mysql\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+mysql-connector-java\:\#@\#\:+revision\:\#@\#\:+5.1.24\:\#@\#\:=5.1.24 release 5.1.24 null 6 | +organisation\:\#@\#\:+org.scala-lang\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+scala-compiler\:\#@\#\:+revision\:\#@\#\:+2.11.8\:\#@\#\:=2.11.8 release 2.11.8 null 7 | +organisation\:\#@\#\:+de.zalando\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+beard_2.11\:\#@\#\:+revision\:\#@\#\:+0.1.2\:\#@\#\:=0.1.2 release 0.1.2 null 8 | +organisation\:\#@\#\:+com.typesafe.akka\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+akka-http-experimental_2.11\:\#@\#\:+revision\:\#@\#\:+2.4.6\:\#@\#\:=2.4.6 release 2.4.6 null 9 | +organisation\:\#@\#\:+com.typesafe.akka\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:+module\:\#@\#\:+akka-http-core_2.11\:\#@\#\:+revision\:\#@\#\:+2.4.6\:\#@\#\:=2.4.6 release 2.4.6 null 10 | -------------------------------------------------------------------------------- /target/resolution-cache/default/scala-akka-http-mysql-template_2.11/1.0/resolved.xml.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | scala-akka-http-mysql-template 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /target/resolution-cache/reports/default-scala-akka-http-mysql-template_2.11-docs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /target/resolution-cache/reports/default-scala-akka-http-mysql-template_2.11-optional.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /target/resolution-cache/reports/default-scala-akka-http-mysql-template_2.11-plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /target/resolution-cache/reports/default-scala-akka-http-mysql-template_2.11-pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /target/resolution-cache/reports/default-scala-akka-http-mysql-template_2.11-provided.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /target/resolution-cache/reports/default-scala-akka-http-mysql-template_2.11-scala-tool.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /target/resolution-cache/reports/default-scala-akka-http-mysql-template_2.11-sources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | */ 18 | 19 | body { 20 | font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif; 21 | font-size:small; 22 | } 23 | 24 | div#logo { 25 | float: right; 26 | padding-left: 10px; 27 | padding-bottom: 10px; 28 | background: white; 29 | text-align: center; 30 | } 31 | 32 | #logo img { 33 | border: 0; 34 | } 35 | 36 | div#date { 37 | font-style: italic; 38 | padding-left: 60px; 39 | padding-bottom: 40px; 40 | } 41 | 42 | 43 | h1 { 44 | margin-bottom:2px; 45 | 46 | border-color:#7A9437; 47 | border-style:solid; 48 | border-width:0 0 3px 0; 49 | } 50 | 51 | span#module { 52 | color:#7A9437; 53 | text-decoration:none; 54 | } 55 | 56 | span#organisation { 57 | color:black; 58 | text-decoration:none; 59 | } 60 | 61 | #confmenu { 62 | color: #000; 63 | border-bottom: 2px solid black; 64 | margin: 12px 0px 0px 0px; 65 | padding: 0px; 66 | z-index: 1; 67 | padding-left: 10px 68 | } 69 | 70 | #confmenu li { 71 | display: inline; 72 | overflow: hidden; 73 | list-style-type: none; 74 | } 75 | 76 | #confmenu a, a.active { 77 | color: #DEDECF; 78 | background: #898B5E; 79 | font: bold 1em "Trebuchet MS", Arial, sans-serif; 80 | border: 2px solid black; 81 | padding: 2px 5px 0px 5px; 82 | text-decoration: none; 83 | } 84 | 85 | /* 86 | background: #ABAD85 #CED4BD 87 | background: #DEE4CD 88 | */ 89 | 90 | #confmenu a.active { 91 | color: #7A9437; 92 | background: #DEE4CD; 93 | border-bottom: 3px solid #DEE4CD; 94 | } 95 | 96 | #confmenu a:hover { 97 | color: #fff; 98 | background: #ADC09F; 99 | } 100 | 101 | #confmenu a:visited { 102 | color: #DEDECF; 103 | } 104 | 105 | #confmenu a.active:visited { 106 | color: #7A9437; 107 | } 108 | 109 | #confmenu a.active:hover { 110 | background: #DEE4CD; 111 | color: #DEDECF; 112 | } 113 | 114 | #content { 115 | background: #DEE4CD; 116 | padding: 20px; 117 | border: 2px solid black; 118 | border-top: none; 119 | z-index: 2; 120 | } 121 | 122 | #content a { 123 | text-decoration: none; 124 | color: #E8E9BE; 125 | } 126 | 127 | #content a:hover { 128 | background: #898B5E; 129 | } 130 | 131 | 132 | h2 { 133 | margin-bottom:2px; 134 | font-size:medium; 135 | 136 | border-color:#7A9437; 137 | border-style:solid; 138 | border-width:0 0 2px 0; 139 | } 140 | 141 | h3 { 142 | margin-top:30px; 143 | margin-bottom:2px; 144 | padding: 5 5 5 0; 145 | font-size: 24px; 146 | border-style:solid; 147 | border-width:0 0 2px 0; 148 | } 149 | 150 | h4 { 151 | margin-bottom:2px; 152 | margin-top:2px; 153 | font-size:medium; 154 | 155 | border-color:#7A9437; 156 | border-style:dashed; 157 | border-width:0 0 1px 0; 158 | } 159 | 160 | h5 { 161 | margin-bottom:2px; 162 | margin-top:2px; 163 | margin-left:20px; 164 | font-size:medium; 165 | } 166 | 167 | span.resolved { 168 | padding-left: 15px; 169 | font-weight: 500; 170 | font-size: small; 171 | } 172 | 173 | 174 | #content table { 175 | border-collapse:collapse; 176 | width:90%; 177 | margin:auto; 178 | margin-top: 5px; 179 | } 180 | #content thead { 181 | background-color:#CED4BD; 182 | border:1px solid #7A9437; 183 | } 184 | #content tbody { 185 | border-collapse:collapse; 186 | background-color:#FFFFFF; 187 | border:1px solid #7A9437; 188 | } 189 | 190 | #content th { 191 | font-family:monospace; 192 | border:1px solid #7A9437; 193 | padding:5px; 194 | } 195 | 196 | #content td { 197 | border:1px dotted #7A9437; 198 | padding:0 3 0 3; 199 | } 200 | 201 | #content table a { 202 | color:#7A9437; 203 | text-decoration:none; 204 | } 205 | 206 | #content table a:hover { 207 | background-color:#CED4BD; 208 | color:#7A9437; 209 | } 210 | 211 | 212 | 213 | table.deps { 214 | border-collapse:collapse; 215 | width:90%; 216 | margin:auto; 217 | margin-top: 5px; 218 | } 219 | 220 | table.deps thead { 221 | background-color:#CED4BD; 222 | border:1px solid #7A9437; 223 | } 224 | table.deps tbody { 225 | border-collapse:collapse; 226 | background-color:#FFFFFF; 227 | border:1px solid #7A9437; 228 | } 229 | 230 | table.deps th { 231 | font-family:monospace; 232 | border:1px solid #7A9437; 233 | padding:2; 234 | } 235 | 236 | table.deps td { 237 | border:1px dotted #7A9437; 238 | padding:0 3 0 3; 239 | } 240 | 241 | 242 | 243 | 244 | 245 | table.header { 246 | border:0; 247 | width:90%; 248 | margin:auto; 249 | margin-top: 5px; 250 | } 251 | 252 | table.header thead { 253 | border:0; 254 | } 255 | table.header tbody { 256 | border:0; 257 | } 258 | table.header tr { 259 | padding:0px; 260 | border:0; 261 | } 262 | table.header td { 263 | padding:0 3 0 3; 264 | border:0; 265 | } 266 | 267 | td.title { 268 | width:150px; 269 | margin-right:15px; 270 | 271 | font-size:small; 272 | font-weight:700; 273 | } 274 | 275 | td.title:first-letter { 276 | color:#7A9437; 277 | background-color:transparent; 278 | } 279 | 280 | -------------------------------------------------------------------------------- /target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 |
    51 | No dependency 52 |
    53 |
    54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 |
    ModuleRevisionStatusResolverDefaultLicensesSize
    78 |
    79 |
    80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | #- 96 | 97 | 98 | by 99 | 100 | 101 | 102 | 103 | 104 | #-- 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | kB 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | searched 165 | 166 | 167 | downloaded 168 | 169 | 170 | 171 | http://ant.apache.org/ivy/images/evicted.gif 172 | evicted 173 | evicted by 174 | 175 | 176 | 177 | 178 | http://ant.apache.org/ivy/images/error.gif 179 | error 180 | error: 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | #- 194 | 195 | by 196 | 197 | 198 | 199 | 200 | 201 | #-- 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 |
  • 233 | 234 | 235 | active 236 | 237 | --. 238 | 239 | 240 |
  • 241 |
    242 | 243 | 244 | 245 | 246 | -- 247 | 248 | :: 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | Ivy report :: <xsl:value-of select="info/@module"/> by <xsl:value-of select="info/@organisation"/> :: <xsl:value-of select="info/@conf"/> 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 |

    265 | 266 | - 267 | 268 | 269 | 270 | 271 | by 272 | 273 | 274 | 275 |

    276 |
    277 | resolved on 278 | 279 | 280 | 281 |
    282 |
      283 | 284 | 285 | 286 |
    287 | 288 |
    289 |

    Dependencies Stats

    290 | 291 | 292 | 297 | 300 | 303 |
    Modules
    Revisions 293 | ( searched searched, 294 | downloaded downloaded, 295 | evicted evicted, 296 | errors error)
    Artifacts 298 | ( downloaded, 299 | failed)
    Artifacts size kB 301 | ( kB downloaded, 302 | kB in cache)
    304 | 305 | 306 |

    Errors

    307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 |
    ModuleRevisionError
    326 |
    327 | 328 | 329 |

    Conflicts

    330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 349 | 358 | 369 | 370 | 371 | 372 |
    ModuleSelectedEvicted
    342 | 343 | #- 344 | 345 | by 346 | 347 | 348 | 350 | 351 | 352 | #-- 353 | 354 | 355 | 356 | 357 | 359 | 360 | 361 | #-- 362 | 363 | 364 | 365 | 366 | 367 | 368 |
    373 |
    374 | 375 |

    Dependencies Overview

    376 | 377 | 378 | 379 | 380 | 381 | 382 |

    Details

    383 | 384 |

    385 | 386 | - 387 | 388 | by 389 |

    390 | 391 |

    392 | 393 | -- 394 | 395 | Revision: 396 | 397 | 398 | 399 | 400 | 401 |

    402 | 403 | 404 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 418 | 419 | 424 | 425 | 426 | 437 | 438 |
    Home Page 405 | 406 | 407 | 408 |
    Status
    Publication
    Resolver
    Configurations
    Artifacts size kB 416 | ( kB downloaded, 417 | kB in cache)
    Licenses 420 | 421 | 422 | 423 |
    Evicted by 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | in conflict manager 436 |
    439 |
    Required by
    440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 460 | 461 | 462 | 463 | 464 | 465 | 466 |
    OrganisationNameRevisionIn ConfigurationsAsked Revision
    455 | 456 | #- 457 | 458 | 459 |
    467 | 468 | 469 |
    Dependencies
    470 | 471 | 472 | 473 | 474 | 475 |
    Artifacts
    476 | 477 |
    478 | No artifact 479 |
    480 |
    481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 |
    NameTypeExtDownloadSize
    kB
    504 |
    505 | 506 |
    507 |
    508 |
    509 |
    510 | 511 | 512 |
    513 | 514 |
    515 | -------------------------------------------------------------------------------- /target/scala-2.11/classes/Main$$anonfun$1$$anonfun$apply$1$$anonfun$apply$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/scala-2.11/classes/Main$$anonfun$1$$anonfun$apply$1$$anonfun$apply$2.class -------------------------------------------------------------------------------- /target/scala-2.11/classes/Main$$anonfun$1$$anonfun$apply$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/scala-2.11/classes/Main$$anonfun$1$$anonfun$apply$1.class -------------------------------------------------------------------------------- /target/scala-2.11/classes/Main$$anonfun$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/scala-2.11/classes/Main$$anonfun$1.class -------------------------------------------------------------------------------- /target/scala-2.11/classes/Main$$anonfun$2$$anonfun$apply$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/scala-2.11/classes/Main$$anonfun$2$$anonfun$apply$3.class -------------------------------------------------------------------------------- /target/scala-2.11/classes/Main$$anonfun$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/scala-2.11/classes/Main$$anonfun$2.class -------------------------------------------------------------------------------- /target/scala-2.11/classes/Main$$anonfun$main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/scala-2.11/classes/Main$$anonfun$main$1.class -------------------------------------------------------------------------------- /target/scala-2.11/classes/Main$$anonfun$main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/scala-2.11/classes/Main$$anonfun$main$2.class -------------------------------------------------------------------------------- /target/scala-2.11/classes/Main$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/scala-2.11/classes/Main$.class -------------------------------------------------------------------------------- /target/scala-2.11/classes/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/scala-2.11/classes/Main.class -------------------------------------------------------------------------------- /target/scala-2.11/classes/static/css/style.css: -------------------------------------------------------------------------------- 1 | html, body, #container { 2 | width: 400px; 3 | height: 400px; 4 | margin: 0; 5 | padding: 0; 6 | } -------------------------------------------------------------------------------- /target/scala-2.11/classes/templates/index.beard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ title }} 6 | 7 | 8 | 9 | 10 | 11 |
    12 | 18 | 19 | -------------------------------------------------------------------------------- /target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- 1 | [debug] Other repositories: 2 | [debug] Default repositories: 3 | [debug] Other repositories: 4 | [debug] Default repositories: 5 | -------------------------------------------------------------------------------- /target/streams/$global/$global/dumpStructure/$global/streams/out: -------------------------------------------------------------------------------- 1 | [info] Writing structure to /tmp/sbt-structure.xml... 2 | [info] Done. 3 | -------------------------------------------------------------------------------- /target/streams/$global/clean/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/streams/$global/clean/$global/streams/out -------------------------------------------------------------------------------- /target/streams/$global/dependencyPositions/$global/streams/update_cache_2.11/input_dsp: -------------------------------------------------------------------------------- 1 | org.scala-lang scala-library2.11.8com.typesafe.akkaakka-http-core2.4.6com.typesafe.akkaakka-http-experimental2.4.6 2 | de.zalandobeard0.1.2mysqlmysql-connector-java5.1.24 3 | org.json4s json4s-native3.5.0 -------------------------------------------------------------------------------- /target/streams/$global/dependencyPositions/$global/streams/update_cache_2.11/output_dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/streams/$global/dependencyPositions/$global/streams/update_cache_2.11/output_dsp -------------------------------------------------------------------------------- /target/streams/$global/ivyConfiguration/$global/streams/out: -------------------------------------------------------------------------------- 1 | [debug] Other repositories: 2 | [debug] Default repositories: 3 | [debug] Using inline dependencies specified in Scala. 4 | -------------------------------------------------------------------------------- /target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/streams/$global/ivySbt/$global/streams/out -------------------------------------------------------------------------------- /target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/streams/$global/projectDescriptors/$global/streams/out -------------------------------------------------------------------------------- /target/streams/$global/update/$global/streams/update_cache_2.11/inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/streams/$global/update/$global/streams/update_cache_2.11/inputs -------------------------------------------------------------------------------- /target/streams/$global/update/$global/streams/update_cache_2.11/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/streams/$global/update/$global/streams/update_cache_2.11/output -------------------------------------------------------------------------------- /target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | Main -------------------------------------------------------------------------------- /target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/streams/compile/compile/$global/streams/out -------------------------------------------------------------------------------- /target/streams/compile/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- 1 | scalac -bootclasspath /usr/lib/jvm/java-8-oracle/jre/lib/resources.jar:/usr/lib/jvm/java-8-oracle/jre/lib/rt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jsse.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jce.jar:/usr/lib/jvm/java-8-oracle/jre/lib/charsets.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jfr.jar:/usr/lib/jvm/java-8-oracle/jre/classes:/home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar -classpath /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/src/main/scala/Main.scala 2 | -------------------------------------------------------------------------------- /target/streams/compile/compileIncremental/$global/streams/out: -------------------------------------------------------------------------------- 1 | [debug]  2 | [debug] Initial source changes:  3 | [debug]  removed:Set() 4 | [debug]  added: Set() 5 | [debug]  modified: Set(/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/src/main/scala/Main.scala) 6 | [debug] Removed products: Set() 7 | [debug] External API changes: API Changes: Set() 8 | [debug] Modified binary dependencies: Set() 9 | [debug] Initial directly invalidated sources: Set(/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/src/main/scala/Main.scala) 10 | [debug]  11 | [debug] Sources indirectly invalidated by: 12 | [debug]  product: Set() 13 | [debug]  binary dep: Set() 14 | [debug]  external source: Set() 15 | [debug] All initially invalidated sources: Set(/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/src/main/scala/Main.scala) 16 | [debug] Recompiling all 1 sources: invalidated sources (1) exceeded 50.0% of all sources 17 | [info] Compiling 1 Scala source to /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes... 18 | [debug] Getting compiler-interface from component compiler for Scala 2.11.8 19 | [debug] Getting compiler-interface from component compiler for Scala 2.11.8 20 | [debug] Running cached compiler 7ab16f4d, interfacing (CompilerInterface) with Scala compiler version 2.11.8 21 | [debug] Calling Scala compiler with arguments (CompilerInterface): 22 | [debug]  -bootclasspath 23 | [debug]  /usr/lib/jvm/java-8-oracle/jre/lib/resources.jar:/usr/lib/jvm/java-8-oracle/jre/lib/rt.jar:/usr/lib/jvm/java-8-oracle/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jsse.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jce.jar:/usr/lib/jvm/java-8-oracle/jre/lib/charsets.jar:/usr/lib/jvm/java-8-oracle/jre/lib/jfr.jar:/usr/lib/jvm/java-8-oracle/jre/classes:/home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar 24 | [debug]  -classpath 25 | [debug]  /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 26 | [debug] Scala compilation took 7.342505361 s 27 | [debug] New invalidations: 28 | [debug]  Set() 29 | [debug] Initial set of included nodes: Set() 30 | [debug] Previously invalidated, but (transitively) depend on new invalidations: 31 | [debug]  Set() 32 | [debug] All newly invalidated sources after taking into account (previously) recompiled sources:Set() 33 | -------------------------------------------------------------------------------- /target/streams/compile/copyResources/$global/streams/copy-resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/streams/compile/copyResources/$global/streams/copy-resources -------------------------------------------------------------------------------- /target/streams/compile/copyResources/$global/streams/out: -------------------------------------------------------------------------------- 1 | [debug] Copy resource mappings:  2 | [debug]  (/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/src/main/resources/templates,/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes/templates) 3 | [debug]  (/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/src/main/resources/static,/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes/static) 4 | [debug]  (/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/src/main/resources/templates/index.beard,/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes/templates/index.beard) 5 | [debug]  (/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/src/main/resources/static/css,/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes/static/css) 6 | [debug]  (/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/src/main/resources/static/css/style.css,/media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes/static/css/style.css) 7 | -------------------------------------------------------------------------------- /target/streams/compile/dependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 2 | -------------------------------------------------------------------------------- /target/streams/compile/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- 1 | /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes 2 | -------------------------------------------------------------------------------- /target/streams/compile/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 2 | -------------------------------------------------------------------------------- /target/streams/compile/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /target/streams/compile/mainClass/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anychart-integrations/scala-akka-http-mysql-template/47f08836fd3b864cee99d451a24ac65edf28a9ad/target/streams/compile/mainClass/$global/streams/out -------------------------------------------------------------------------------- /target/streams/compile/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 2 | -------------------------------------------------------------------------------- /target/streams/compile/run/$global/streams/out: -------------------------------------------------------------------------------- 1 | [info] Running Main  2 | [debug] Waiting for threads to exit or System.exit to be called. 3 | [debug]  Classpath: 4 | [debug]  /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes 5 | [debug]  /home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar 6 | [debug]  /home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar 7 | [debug]  /home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar 8 | [debug]  /home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar 9 | [debug]  /home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar 10 | [debug]  /home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar 11 | [debug]  /home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar 12 | [debug]  /home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar 13 | [debug]  /home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar 14 | [debug]  /home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar 15 | [debug]  /home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar 16 | [debug]  /home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar 17 | [debug]  /home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar 18 | [debug]  /home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar 19 | [debug]  /home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar 20 | [debug]  /home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar 21 | [debug]  /home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar 22 | [debug]  /media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar 23 | [debug]  /home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar 24 | [debug]  /home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar 25 | [debug]  /home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar 26 | [debug]  /home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar 27 | [debug]  /home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar 28 | [debug]  /home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar 29 | [debug]  /home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar 30 | [debug]  /home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar 31 | [debug]  /home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 32 | [debug] Waiting for thread run-main-0 to terminate. 33 | -------------------------------------------------------------------------------- /target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /target/streams/runtime/dependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes:/home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 2 | -------------------------------------------------------------------------------- /target/streams/runtime/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- 1 | /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes 2 | -------------------------------------------------------------------------------- /target/streams/runtime/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 2 | -------------------------------------------------------------------------------- /target/streams/runtime/fullClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes:/home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 2 | -------------------------------------------------------------------------------- /target/streams/runtime/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /media/ssd/sibental/demos/scala/scala-akka-http-mysql-template/target/scala-2.11/classes 2 | -------------------------------------------------------------------------------- /target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 2 | -------------------------------------------------------------------------------- /target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /target/streams/test/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 2 | -------------------------------------------------------------------------------- /target/streams/test/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /home/igor/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.8.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-core_2.11/jars/akka-http-core_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-stream_2.11/jars/akka-stream_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-actor_2.11/jars/akka-actor_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe/config/bundles/config-1.3.0.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-java8-compat_2.11/bundles/scala-java8-compat_2.11-0.7.0.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-akka_2.11/bundles/ssl-config-akka_2.11-0.2.1.jar:/home/igor/.ivy2/cache/com.typesafe/ssl-config-core_2.11/bundles/ssl-config-core_2.11-0.2.1.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-parser-combinators_2.11/bundles/scala-parser-combinators_2.11-1.0.4.jar:/home/igor/.ivy2/cache/org.reactivestreams/reactive-streams/jars/reactive-streams-1.0.0.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-parsing_2.11/jars/akka-parsing_2.11-2.4.6.jar:/home/igor/.ivy2/cache/com.typesafe.akka/akka-http-experimental_2.11/jars/akka-http-experimental_2.11-2.4.6.jar:/home/igor/.ivy2/cache/de.zalando/beard_2.11/jars/beard_2.11-0.1.2.jar:/home/igor/.ivy2/cache/org.antlr/antlr4/jars/antlr4-4.5.2.jar:/home/igor/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-2.11.8.jar:/home/igor/.ivy2/cache/org.monifu/monifu_2.11/jars/monifu_2.11-1.0.jar:/home/igor/.ivy2/cache/org.monifu/monifu-core_2.11/jars/monifu-core_2.11-1.0.jar:/media/ssd/work/install/activator-dist-1.3.12/repository/org.slf4j/slf4j-api/1.7.7/jars/slf4j-api.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-classic/jars/logback-classic-1.1.7.jar:/home/igor/.ivy2/cache/ch.qos.logback/logback-core/jars/logback-core-1.1.7.jar:/home/igor/.ivy2/cache/mysql/mysql-connector-java/jars/mysql-connector-java-5.1.24.jar:/home/igor/.ivy2/cache/org.json4s/json4s-native_2.11/jars/json4s-native_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-core_2.11/jars/json4s-core_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-ast_2.11/jars/json4s-ast_2.11-3.5.0.jar:/home/igor/.ivy2/cache/org.json4s/json4s-scalap_2.11/jars/json4s-scalap_2.11-3.5.0.jar:/home/igor/.ivy2/cache/com.thoughtworks.paranamer/paranamer/bundles/paranamer-2.8.jar:/home/igor/.ivy2/cache/org.scala-lang.modules/scala-xml_2.11/bundles/scala-xml_2.11-1.0.6.jar 2 | -------------------------------------------------------------------------------- /target/streams/test/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /target/streams/test/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------