Skip to content

Commit 447e07c

Browse files
Merge pull request #60 from groupdocs-annotation/prepare-2306
release 23.6
2 parents af09119 + e521c51 commit 447e07c

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

Demos/Dropwizard/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM openjdk:8-jre-alpine
2-
RUN mkdir -p /home/groupdocs/app && apk add fontconfig && apk add msttcorefonts-installer && update-ms-fonts && fc-cache -f
3-
WORKDIR /home/groupdocs/app
4-
COPY target/release/DocumentSamples /home/groupdocs/app
5-
COPY target/release/Licenses /home/groupdocs/app
6-
COPY target/release/annotation-*.jar /home/groupdocs/app/app.jar
2+
RUN mkdir -p /app && apk add fontconfig && apk add msttcorefonts-installer && update-ms-fonts && fc-cache -f
3+
WORKDIR /app
4+
COPY /DocumentSamples /app
5+
COPY /Licenses /app
6+
COPY /target/annotation-*.jar /app/app.jar
77

88
EXPOSE 8080
99

10-
ENTRYPOINT java -jar /home/groupdocs/app/app.jar configuration.yml
10+
ENTRYPOINT java -jar /app/app.jar configuration.yml

Demos/Dropwizard/client/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
},
2929
"private": true,
3030
"dependencies": {
31-
"@angular/animations": "^8.2.4",
32-
"@angular/common": "^8.2.4",
31+
"@angular/animations": "^8.2.14",
32+
"@angular/common": "^8.2.14",
3333
"@angular/compiler": "^8.2.4",
34-
"@angular/core": "^8.2.4",
35-
"@angular/forms": "^8.2.4",
36-
"@angular/platform-browser": "^8.2.4",
37-
"@angular/platform-browser-dynamic": "^8.2.4",
38-
"@angular/router": "^8.2.4",
39-
"@groupdocs.examples.angular/annotation": "^0.8.98",
34+
"@angular/core": "^8.2.14",
35+
"@angular/forms": "^8.2.14",
36+
"@angular/platform-browser": "^8.2.14",
37+
"@angular/platform-browser-dynamic": "^8.2.14",
38+
"@angular/router": "^8.2.14",
39+
"@groupdocs.examples.angular/annotation": "^0.8.99",
4040
"@nrwl/angular": "^8.12.11",
4141
"common-components": "^1.0.5",
4242
"core-js": "^2.6.11",

Demos/Dropwizard/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<dependency>
8282
<groupId>com.groupdocs</groupId>
8383
<artifactId>groupdocs-annotation</artifactId>
84-
<version>23.4</version>
84+
<version>23.6</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>javax.xml.bind</groupId>

Demos/Spring/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@angular/platform-browser": "^8.2.4",
3737
"@angular/platform-browser-dynamic": "^8.2.4",
3838
"@angular/router": "^8.2.4",
39-
"@groupdocs.examples.angular/annotation": "^0.8.98",
39+
"@groupdocs.examples.angular/annotation": "^0.8.99",
4040
"@nrwl/angular": "^8.12.11",
4141
"common-components": "^1.0.5",
4242
"core-js": "^2.6.11",

Demos/Spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
<dependency>
132132
<groupId>com.groupdocs</groupId>
133133
<artifactId>groupdocs-annotation</artifactId>
134-
<version>23.4</version>
134+
<version>23.6</version>
135135
</dependency>
136136
<dependency>
137137
<groupId>com.google.guava</groupId>

Examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.groupdocs</groupId>
2525
<artifactId>groupdocs-annotation</artifactId>
26-
<version>23.4</version>
26+
<version>23.6</version>
2727
</dependency>
2828
</dependencies>
2929
<repositories>

Examples/src/main/java/com/groupdocs/annotation/examples/basic_usage/AddUserRole.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ public static void run() {
2424
Reply reply1 = new Reply();
2525
reply1.setComment("This comment will be applied");
2626
reply1.setRepliedOn(Calendar.getInstance().getTime());
27-
User user1 = new User(1, "Reviewer", Role.Editor);
27+
User user1 = new User(1, "Reviewer", Role.EDITOR);
2828
reply1.setUser(user1);
2929

3030
Reply reply2 = new Reply();
3131
reply2.setComment("This comment will NOT be applied");
3232
reply2.setRepliedOn(Calendar.getInstance().getTime());
33-
User user2 = new User(1, "Member", Role.Viewer);
33+
User user2 = new User(1, "Member", Role.VIEWER);
3434
reply2.setUser(user2);
3535

3636
java.util.List<Reply> replies = new ArrayList<>();

0 commit comments

Comments
 (0)