Skip to content
This repository was archived by the owner on Feb 20, 2024. It is now read-only.

Commit 23a6237

Browse files
authored
Merge pull request #24 from zlamalp/dependencies
chore: updated Google API libraries
2 parents ecdc34e + ce64371 commit 23a6237

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
java: [ '17' ]
9+
java: [ '21' ]
1010
steps:
1111
- uses: actions/checkout@v2
1212
- name: Set up JDK ${{ matrix.java }}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2017, CESNET, CERIT-SC. All rights reserved.
1+
Copyright (c) 2015-2023, CESNET, CERIT-SC. All rights reserved.
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are met:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,11 @@ Second argument is type of action: "users", "groups" or "teamDrives".
116116
Third argument is path to CSV file (users, groups or teamDrives - depending on action)
117117

118118
```
119-
java -jar ./google-group-connector-2.0.1.jar DOMAIN ACTION PATH_TO_CSV_FILE
119+
java -jar ./google-group-connector-2.0.2.jar DOMAIN ACTION PATH_TO_CSV_FILE
120120
```
121121

122122
By default, application logs to console. You can change default logging by passing own logback configuration.
123123

124124
```$xslt
125-
java -Dlogback.configurationFile=file:///etc/perun/logback-google-groups.xml -jar ./google-group-connector-2.0.1.jar DOMAIN ACTION PATH_TO_CSV_FILE
125+
java -Dlogback.configurationFile=file:///etc/perun/logback-google-groups.xml -jar ./google-group-connector-2.0.2.jar DOMAIN ACTION PATH_TO_CSV_FILE
126126
```

pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
<groupId>cz.metacentrum.perun.core</groupId>
77
<artifactId>google-group-connector</artifactId>
8-
<version>2.0.1</version>
8+
<version>2.0.2</version>
99
<packaging>jar</packaging>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13-
<maven.compiler.source>17</maven.compiler.source>
14-
<maven.compiler.target>17</maven.compiler.target>
13+
<maven.compiler.source>21</maven.compiler.source>
14+
<maven.compiler.target>21</maven.compiler.target>
1515
<start-class>cz.metacentrum.perun.googlegroupconnector.GoogleGroupsServiceImpl</start-class>
1616
</properties>
1717

@@ -22,14 +22,14 @@
2222
<!-- Build an executable JAR -->
2323
<groupId>org.apache.maven.plugins</groupId>
2424
<artifactId>maven-jar-plugin</artifactId>
25-
<version>3.2.0</version>
25+
<version>3.3.0</version>
2626
</plugin>
2727

2828
<!-- Package JAR with Main class and all libraries -->
2929
<plugin>
3030
<groupId>org.apache.maven.plugins</groupId>
3131
<artifactId>maven-shade-plugin</artifactId>
32-
<version>3.2.4</version>
32+
<version>3.3.0</version>
3333
<configuration>
3434
<createDependencyReducedPom>false</createDependencyReducedPom>
3535
</configuration>
@@ -55,7 +55,7 @@
5555
<plugin>
5656
<groupId>org.codehaus.mojo</groupId>
5757
<artifactId>exec-maven-plugin</artifactId>
58-
<version>3.0.0</version>
58+
<version>3.1.0</version>
5959
<executions>
6060
<execution>
6161
<goals>
@@ -75,37 +75,37 @@
7575
<dependency>
7676
<groupId>com.google.apis</groupId>
7777
<artifactId>google-api-services-admin-directory</artifactId>
78-
<version>directory_v1-rev20211109-1.32.1</version>
78+
<version>directory_v1-rev20230516-2.0.0</version>
7979
</dependency>
8080
<dependency>
8181
<groupId>com.google.apis</groupId>
8282
<artifactId>google-api-services-drive</artifactId>
83-
<version>v3-rev20211107-1.32.1</version>
83+
<version>v3-rev20230610-2.0.0</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>com.google.http-client</groupId>
8787
<artifactId>google-http-client-jackson2</artifactId>
88-
<version>1.40.1</version>
88+
<version>1.43.3</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>com.google.api-client</groupId>
9292
<artifactId>google-api-client</artifactId>
93-
<version>1.32.2</version>
93+
<version>2.2.0</version>
9494
</dependency>
9595
<dependency>
9696
<groupId>com.opencsv</groupId>
9797
<artifactId>opencsv</artifactId>
98-
<version>5.5.2</version>
98+
<version>5.9</version>
9999
</dependency>
100100
<dependency>
101101
<groupId>org.apache.commons</groupId>
102102
<artifactId>commons-lang3</artifactId>
103-
<version>3.12.0</version>
103+
<version>3.14.0</version>
104104
</dependency>
105105
<dependency>
106106
<groupId>ch.qos.logback</groupId>
107107
<artifactId>logback-classic</artifactId>
108-
<version>1.2.7</version>
108+
<version>1.3.12</version>
109109
</dependency>
110110
</dependencies>
111111
</project>

0 commit comments

Comments
 (0)