Revize ba1fdf2c
Přidáno uživatelem Tomáš Šimandl před asi 6 roky(ů)
sources/pom.xml | ||
---|---|---|
86 | 86 |
<artifactId>commons-fileupload</artifactId> |
87 | 87 |
<version>1.3.3</version> |
88 | 88 |
</dependency> |
89 |
<!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
|
90 |
<dependency> |
|
91 |
<groupId>commons-io</groupId> |
|
92 |
<artifactId>commons-io</artifactId> |
|
93 |
<version>2.6</version> |
|
94 |
</dependency> |
|
89 |
|
|
95 | 90 |
|
96 | 91 |
|
97 | 92 |
|
... | ... | |
136 | 131 |
|
137 | 132 |
|
138 | 133 |
|
139 |
<!-- Libs fro JSON parsing and creating --> |
|
140 |
<!-- TODO use only one lib (gson)--> |
|
134 |
<!-- Lib for JSON parsing and creating --> |
|
141 | 135 |
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> |
142 | 136 |
<dependency> |
143 | 137 |
<groupId>com.google.code.gson</groupId> |
144 | 138 |
<artifactId>gson</artifactId> |
145 | 139 |
<version>2.8.5</version> |
146 | 140 |
</dependency> |
147 |
<!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib --> |
|
148 |
<dependency> |
|
149 |
<groupId>net.sf.json-lib</groupId> |
|
150 |
<artifactId>json-lib</artifactId> |
|
151 |
<version>2.4</version> |
|
152 |
<classifier>jdk15</classifier> |
|
153 |
</dependency> |
|
154 | 141 |
|
155 | 142 |
|
156 | 143 |
<!-- Database --> |
sources/src/main/java/cz/zcu/kiv/offscreen/servlets/api/GetSessionDiagram.java | ||
---|---|---|
5 | 5 |
import cz.zcu.kiv.offscreen.modularization.ModuleProvider; |
6 | 6 |
import cz.zcu.kiv.offscreen.servlets.BaseServlet; |
7 | 7 |
import javafx.util.Pair; |
8 |
import org.apache.commons.lang.StringUtils; |
|
9 | 8 |
import org.apache.logging.log4j.LogManager; |
10 | 9 |
import org.apache.logging.log4j.Logger; |
10 |
import org.apache.maven.shared.utils.StringUtils; |
|
11 | 11 |
|
12 | 12 |
import javax.servlet.http.HttpServletRequest; |
13 | 13 |
import javax.servlet.http.HttpServletResponse; |
Také k dispozici: Unified diff
Removed unused dependencies