Skip to content

Commit d111b8c

Browse files
committed
* Refactored Cloudinary Java into multiple modules without breaking the module naming convention already established.
* Created a -taglib module to support constructing file input tags on the server side, since it requires some server side API signing. * Separate modules allow users who are writing stand-alone applications (not depending on the Servlet API) not to have a dependency on it.
1 parent 58af341 commit d111b8c

File tree

19 files changed

+66
-55
lines changed

19 files changed

+66
-55
lines changed

.classpath

Lines changed: 0 additions & 10 deletions
This file was deleted.

.project

Lines changed: 0 additions & 29 deletions
This file was deleted.

.settings/org.eclipse.jdt.core.prefs

Lines changed: 0 additions & 13 deletions
This file was deleted.

cloudinary-core/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
4+
<parent>
5+
<groupId>com.cloudinary</groupId>
6+
<artifactId>cloudinary-parent</artifactId>
7+
<version>1.0.3-SNAPSHOT</version>
8+
</parent>
9+
10+
<artifactId>cloudinary</artifactId>
11+
<packaging>jar</packaging>
12+
13+
</project>
File renamed without changes.
File renamed without changes.

src/main/java/com/cloudinary/EagerTransformation.java renamed to cloudinary-core/src/main/java/com/cloudinary/EagerTransformation.java

File renamed without changes.

src/main/java/com/cloudinary/SmartUrlEncoder.java renamed to cloudinary-core/src/main/java/com/cloudinary/SmartUrlEncoder.java

File renamed without changes.

src/main/java/com/cloudinary/Transformation.java renamed to cloudinary-core/src/main/java/com/cloudinary/Transformation.java

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)