Skip to content

Commit 4167cef

Browse files
Updated with GroupDocs.Viewer Cloud v2
1 parent f40e1c2 commit 4167cef

215 files changed

Lines changed: 1355 additions & 46425 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

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

Examples/.classpath

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
26+
<attributes>
27+
<attribute name="maven.pomderived" value="true"/>
28+
</attributes>
29+
</classpathentry>
30+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
31+
<attributes>
32+
<attribute name="maven.pomderived" value="true"/>
33+
</attributes>
34+
</classpathentry>
35+
<classpathentry kind="output" path="target/classes"/>
36+
</classpath>

Examples/.gitignore

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

Examples/.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>viewer-java-examples</name>
3+
<name>viewer-cloud-java-examples</name>
44
<comment></comment>
55
<projects>
66
</projects>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
3+
org.eclipse.jdt.core.compiler.compliance=1.5
4+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
5+
org.eclipse.jdt.core.compiler.source=1.5
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

Examples/pom.xml

Lines changed: 20 additions & 165 deletions
Original file line numberDiff line numberDiff line change
@@ -1,166 +1,21 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
6-
7-
<groupId>com.groupdocs</groupId>
8-
<artifactId>viewer-java-examples</artifactId>
9-
<version>1.0</version>
10-
<build>
11-
<plugins>
12-
<plugin>
13-
<groupId>org.apache.maven.plugins</groupId>
14-
<artifactId>maven-enforcer-plugin</artifactId>
15-
<version>3.0.0-M1</version>
16-
<executions>
17-
<execution>
18-
<id>enforce-maven</id>
19-
<goals>
20-
<goal>enforce</goal>
21-
</goals>
22-
<configuration>
23-
<rules>
24-
<requireMavenVersion>
25-
<version>2.2.0</version>
26-
</requireMavenVersion>
27-
</rules>
28-
</configuration>
29-
</execution>
30-
</executions>
31-
</plugin>
32-
<plugin>
33-
<groupId>org.apache.maven.plugins</groupId>
34-
<artifactId>maven-surefire-plugin</artifactId>
35-
<version>2.12</version>
36-
<configuration>
37-
<systemProperties>
38-
<property>
39-
<name>loggerPath</name>
40-
<value>conf/log4j.properties</value>
41-
</property>
42-
</systemProperties>
43-
<argLine>-Xms512m -Xmx1500m</argLine>
44-
<parallel>methods</parallel>
45-
<forkMode>pertest</forkMode>
46-
</configuration>
47-
</plugin>
48-
<plugin>
49-
<artifactId>maven-dependency-plugin</artifactId>
50-
<executions>
51-
<execution>
52-
<phase>package</phase>
53-
<goals>
54-
<goal>copy-dependencies</goal>
55-
</goals>
56-
<configuration>
57-
<outputDirectory>${project.build.directory}/lib</outputDirectory>
58-
</configuration>
59-
</execution>
60-
</executions>
61-
</plugin>
62-
<plugin>
63-
<groupId>org.apache.maven.plugins</groupId>
64-
<artifactId>maven-javadoc-plugin</artifactId>
65-
<version>2.10.4</version>
66-
<executions>
67-
<execution>
68-
<id>attach-javadocs</id>
69-
<goals>
70-
<goal>jar</goal>
71-
</goals>
72-
</execution>
73-
</executions>
74-
</plugin>
75-
<plugin>
76-
<groupId>org.apache.maven.plugins</groupId>
77-
<artifactId>maven-source-plugin</artifactId>
78-
<version>2.2.1</version>
79-
<executions>
80-
<execution>
81-
<id>attach-sources</id>
82-
<goals>
83-
<goal>jar-no-fork</goal>
84-
</goals>
85-
</execution>
86-
</executions>
87-
</plugin>
88-
</plugins>
89-
</build>
90-
91-
<repositories>
92-
<repository>
93-
<id>GroupDocsJavaCloudAPI</id>
94-
<name>GroupDocs Java Cloud API</name>
95-
<url>http://artifact.groupdocs.cloud/repo/</url>
96-
</repository>
97-
<repository>
98-
<id>maven.aspose.cloud</id>
99-
<name>maven.aspose.cloud</name>
100-
<url>http://artifact.aspose.cloud/repo/</url>
101-
</repository>
102-
</repositories>
103-
104-
<dependencies>
105-
<dependency>
106-
<groupId>com.groupdocs</groupId>
107-
<artifactId>groupdocs-viewer-cloud</artifactId>
108-
<version>18.7</version>
109-
</dependency>
110-
<dependency>
111-
<groupId>io.swagger</groupId>
112-
<artifactId>swagger-annotations</artifactId>
113-
<version>${swagger-core-version}</version>
114-
</dependency>
115-
<dependency>
116-
<groupId>com.squareup.okhttp</groupId>
117-
<artifactId>okhttp</artifactId>
118-
<version>${okhttp-version}</version>
119-
</dependency>
120-
<dependency>
121-
<groupId>com.squareup.okhttp</groupId>
122-
<artifactId>logging-interceptor</artifactId>
123-
<version>${okhttp-version}</version>
124-
</dependency>
125-
<dependency>
126-
<groupId>com.google.code.gson</groupId>
127-
<artifactId>gson</artifactId>
128-
<version>${gson-version}</version>
129-
</dependency>
130-
<dependency>
131-
<groupId>io.gsonfire</groupId>
132-
<artifactId>gson-fire</artifactId>
133-
<version>${gson-fire-version}</version>
134-
</dependency>
135-
<dependency>
136-
<groupId>org.threeten</groupId>
137-
<artifactId>threetenbp</artifactId>
138-
<version>${threetenbp-version}</version>
139-
</dependency>
140-
<!-- test dependencies -->
141-
<dependency>
142-
<groupId>junit</groupId>
143-
<artifactId>junit</artifactId>
144-
<version>${junit-version}</version>
145-
</dependency>
146-
<dependency>
147-
<groupId>com.aspose</groupId>
148-
<artifactId>aspose-cloud-storage</artifactId>
149-
<version>${aspose-cloud-storage-version}</version>
150-
</dependency>
151-
</dependencies>
152-
<properties>
153-
<java.version>1.7</java.version>
154-
<maven.compiler.source>${java.version}</maven.compiler.source>
155-
<maven.compiler.target>${java.version}</maven.compiler.target>
156-
<gson-fire-version>1.8.0</gson-fire-version>
157-
<swagger-core-version>1.5.15</swagger-core-version>
158-
<okhttp-version>2.7.5</okhttp-version>
159-
<gson-version>2.8.1</gson-version>
160-
<threetenbp-version>1.3.5</threetenbp-version>
161-
<maven-plugin-version>1.0.0</maven-plugin-version>
162-
<junit-version>4.12</junit-version>
163-
<aspose-cloud-storage-version>1.0.0</aspose-cloud-storage-version>
164-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
165-
</properties>
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+
<groupId>viewer-cloud-java-examples</groupId>
4+
<artifactId>viewer-cloud-java-examples</artifactId>
5+
<version>1.0</version>
6+
<repositories>
7+
<repository>
8+
<id>groupdocs-artifact-repository</id>
9+
<name>GroupDocs Artifact Repository</name>
10+
<url>https://repository.groupdocs.cloud/repo</url>
11+
</repository>
12+
</repositories>
13+
<dependencies>
14+
<dependency>
15+
<groupId>com.groupdocs</groupId>
16+
<artifactId>groupdocs-viewer-cloud</artifactId>
17+
<version>19.3</version>
18+
<scope>compile</scope>
19+
</dependency>
20+
</dependencies>
16621
</project>

Examples/src/main/java/com/groupdocs/cloud/viewer/examples/Document_Information/Create_CAD_Layers_Cache_HTML.java

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

Examples/src/main/java/com/groupdocs/cloud/viewer/examples/Document_Information/Create_CAD_Layers_Cache_Image.java

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

0 commit comments

Comments
 (0)