This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=DisplayLink Manager Service | |
| After=display-manager.service | |
| [email protected] | |
| [Service] | |
| ExecStartPre=/sbin/modprobe evdi | |
| ExecStart=/usr/lib/displaylink/DisplayLinkManager | |
| Restart=always | |
| WorkingDirectory=/usr/lib/displaylink |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| plugins { | |
| id "io.beekeeper.gradle.plugin" version "0.7.0" apply false | |
| } | |
| subprojects { | |
| (...) | |
| apply plugin: "io.beekeeper.gradle.plugin" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| runtime group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0' | |
| runtime group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '2.3.0' | |
| runtime group: 'com.sun.xml.bind', name: 'jaxb-core', version: '2.3.0' | |
| runtime group: 'javax.activation', name: 'activation', version: '1.1.1' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0' | |
| compile group: 'javax.activation', name: 'activation', version: '1.1.1' | |
| compile group: 'org.javassist', name: 'javassist', version: '3.23.1-GA' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| lombok { | |
| version = "1.18.8" | |
| sha256 = "0396952823579b316a0fe85cbd871bbb3508143c2bcbd985dd7800e806cb24fc" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| docker run -it --rm -v $(pwd):/src openjdk:alpine /bin/sh -c "cd src; ./gradlew test assemble" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl --user $user:$password \ | |
| --insecure \ | |
| --progress-bar \ | |
| -H "Accept: application/json" \ | |
| -H "X-Requested-By: dummy" \ | |
| -X POST \ | |
| -F id=@build/libs/$your_war_file \ | |
| -F contextroot=$application_name -F name=$application_name \ | |
| -F force=true \ | |
| https://$glassfish_host:4848/management/domain/applications/application/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .window-frame, .window-frame:backdrop { | |
| box-shadow: 0 0 0 black; | |
| border-style: none; | |
| margin: 0; | |
| border-radius: 0; | |
| } | |
| .titlebar { | |
| border-radius: 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class FileDownloader extends AbstractExtension { | |
| private boolean overrideContentType = true; | |
| /** | |
| * Creates a new file downloader for the given resource. To use the | |
| * downloader, you should also {@link #extend(AbstractClientConnector)} the | |
| * component. | |
| * | |
| * @param resource |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class SpecialEclipsePlugin extends SpecialPlugin { | |
| @Override | |
| public void apply(Project project) { | |
| eggExtension(project).create("eclipse", EclipseExtension) | |
| project.apply(plugin: 'eclipse') | |
| project.afterEvaluate { | |
| configureEclipseClasspath(it) |