Preferences -> Editor -> Live Templates
#!/usr/bin/env bash | |
echo "RENEWED_LINEAGE: ${RENEWED_LINEAGE}" | |
# requires `yq` and `jq` cli tools | |
OKTA_API_TOKEN=$(yq --raw-output .okta.client.token ~/.okta/okta.yaml) | |
API_URL="${1}/api/internal/v1/custom-url-domain/certificate" | |
CERT=$(cat "${RENEWED_LINEAGE}/cert.pem") | |
KEY=$(cat "${RENEWED_LINEAGE}/privkey.pem") | |
CHAIN=$(cat "${RENEWED_LINEAGE}/chain.pem") |
20.0.0.r11-grl |
Dear Customer,
We’re writing to let you know about an upcoming change that may affect how you access your content on Amazon Drive, and to help you take steps to keep your content safe.
We understand that you have used Synology Cloud Sync or Hyper Backup on Synology NAS to store information on Amazon Drive.
Amazon will discontinue access to Amazon Drive by Synology Cloud Sync and Hyper Backup starting on November 1st, 2020. Neither application will have access to Amazon Drive after November 1st, 2020, and the only way you will be able to access your stored content will be via Amazon Drive or Amazon Photos web, desktop, and mobile apps.
To ensure a smooth transition, we urge all Synology Cloud Sync and Hyper Backup users to follow these steps:
@SpringBootApplication | |
public class TokenViewerApplication { | |
public static void main(String[] args) { | |
SpringApplication.run(TokenViewerApplication.class, args); | |
} | |
@RestController | |
static class TokenController { |
Default styling
Tip
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |
Note
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |
Caution
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |
Warning
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |
<profiles> | |
<profile> | |
<id>ci</id> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-pmd-plugin</artifactId> | |
<executions> | |
<execution> |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<configuration> | |
<properties> | |
<!-- JUnit 5 specific configuration --> | |
<configurationParameters> | |
junit.jupiter.execution.parallel.enabled = true | |
junit.jupiter.execution.parallel.mode.default = concurrent | |
</configurationParameters> |
--threads=1.5C |
# Add the extension to the project | |
mvn com.gradle:develocity-maven-extension:1.21.6:init | |
# Disable build caching | |
# It will be re-enabled at the end of the post! | |
export MAVEN_OPTS="-Ddevelocity.cache.local.enabled=false" | |
# Run a build | |
mvn clean install |