File tree Expand file tree Collapse file tree 4 files changed +14
-6
lines changed
clients/google-api-services-classroom/v1
com/google/api/services/classroom Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-classroom</artifactId >
25
- <version >v1-rev20250111 -2.0.0</version >
25
+ <version >v1-rev20250114 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
dependencies {
38
- implementation 'com.google.apis:google-api-services-classroom:v1-rev20250111 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-classroom:v1-rev20250114 -2.0.0'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change 23
23
*/
24
24
public class ClassroomScopes {
25
25
26
+ /** See and update its own attachments to posts in Google Classroom. */
27
+ public static final String CLASSROOM_ADDONS_STUDENT = "https://www.googleapis.com/auth/classroom.addons.student" ;
28
+
29
+ /** See, create, and update its own attachments to posts in classes you teach in Google Classroom. */
30
+ public static final String CLASSROOM_ADDONS_TEACHER = "https://www.googleapis.com/auth/classroom.addons.teacher" ;
31
+
26
32
/** View and manage announcements in Google Classroom. */
27
33
public static final String CLASSROOM_ANNOUNCEMENTS = "https://www.googleapis.com/auth/classroom.announcements" ;
28
34
@@ -96,6 +102,8 @@ public class ClassroomScopes {
96
102
*/
97
103
public static java .util .Set <String > all () {
98
104
java .util .Set <String > set = new java .util .HashSet <String >();
105
+ set .add (CLASSROOM_ADDONS_STUDENT );
106
+ set .add (CLASSROOM_ADDONS_TEACHER );
99
107
set .add (CLASSROOM_ANNOUNCEMENTS );
100
108
set .add (CLASSROOM_ANNOUNCEMENTS_READONLY );
101
109
set .add (CLASSROOM_COURSES );
Original file line number Diff line number Diff line change 8
8
9
9
<groupId >com.google.apis</groupId >
10
10
<artifactId >google-api-services-classroom</artifactId >
11
- <version >v1-rev20250111 -2.0.0</version >
12
- <name >Google Classroom API v1-rev20250111 -2.0.0</name >
11
+ <version >v1-rev20250114 -2.0.0</version >
12
+ <name >Google Classroom API v1-rev20250114 -2.0.0</name >
13
13
<packaging >jar</packaging >
14
14
15
15
<inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-classroom</artifactId >
25
- <version >v1-rev20250111 -2.0.0</version >
25
+ <version >v1-rev20250114 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
dependencies {
38
- implementation 'com.google.apis:google-api-services-classroom:v1-rev20250111 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-classroom:v1-rev20250114 -2.0.0'
39
39
}
40
40
```
41
41
You can’t perform that action at this time.
0 commit comments