Theo
Theo
Hi @bgrozev i tried both mvn package & install ``` $ mvn -U clean package -DskipTests -Dassembly.skipAssembly=false $ mvn install -DskipTests -Dassembly.skipAssembly=false ``` with no luck :( [mvn-install.txt](https://github.com/jitsi/jigasi/files/1685881/mvn-install.txt) [mvn-package.txt](https://github.com/jitsi/jigasi/files/1685882/mvn-package.txt) are...
yeah, I cloned it `git clone https://github.com/shierro/jigasi --branch add-assembly-files --single-branch jigasi` I also removed ``` ``` i tried your branch and my branch btw
update: I had success with your build! i was mounting the wrong xml, my bad So both these are success ``` $ mvn -U clean package -DskipTests -Dassembly.skipAssembly=false $ mvn...
fantastic, works like a charm! super thanks mate! i'll dig into the code and try to debug
seems so https://github.com/jonsaw/amazon-cognito-identity-dart/blob/676687346a963b37c96d7d52333d06153d9f69bb/lib/src/cognito_user.dart#L408 1st time we've tried, we got error code 400 SerializationException
@furaiev thanks for fixing this one quickly. i think it's also good to submit a PR to this repo so we can switch back to it once it is merged
@jayakrishnankk my theory is that: not all files you want to ignore are ignored can you verify if all your test files are ignored? example in my case: sonar-project.properties ```...
i am unable to impersonate successfully as well. Error, code 401 ``` unauthorized_client: Client is unauthorized to retrieve access tokens using this method, or client not authorized for any of...
without authClient.subject, i get error code 403 ``` Service accounts cannot invite attendees without Domain-Wide Delegation of Authority. ```
also tried ```javascript const authClient = new google.auth.JWT({ email: serviceJson.client_email, key: serviceJson.private_key, scopes: [ 'https://www.googleapis.com/auth/calendar', 'https://www.googleapis.com/auth/calendar.events', 'https://www.googleapis.com/auth/cloud-platform', ], subject: '[email protected]', }); googleService.authClient = authClient; ``` with error ``` unauthorized_client: Client...