Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
ebb7e3b
EKS TLS
Feb 25, 2021
8ec8f09
EKS TLS
Feb 25, 2021
0460dfa
security
Mar 2, 2021
a4a90f8
loop, fsGroup
Mar 2, 2021
5933fe1
fsGroup
Mar 2, 2021
97528c7
kubernetes
Mar 2, 2021
b5331c6
kubernetes
Mar 2, 2021
df1e09a
secrets
Mar 2, 2021
b898665
kubernetes
Mar 3, 2021
9def322
kubernetes
Mar 3, 2021
7ed5343
kubernetes
Mar 3, 2021
e0f83ce
jenkins pipelines
Mar 23, 2021
c285003
gradle java source set
Mar 26, 2021
3edd43d
...
Mar 26, 2021
737d83f
...
Mar 26, 2021
4aa3be0
gradle
Mar 27, 2021
ef9ff50
runAsUser/runAsGroup/mount
Mar 31, 2021
07e4ae3
AKS storage class
Apr 1, 2021
886e4a7
name change
Apr 1, 2021
97d7a56
name changes
Apr 1, 2021
221f40c
jenkins groovy loader
Apr 2, 2021
904b2a9
jenkins groovy loader (2)
Apr 2, 2021
1ceeed3
Groovy class loading in a Jenkinsfile
Apr 2, 2021
7f10051
findFiles
Apr 7, 2021
24f8567
findFiles
Apr 7, 2021
8c5f9d5
stage
Apr 7, 2021
620812f
credentials binding plugin
Apr 10, 2021
9cd0931
credentials binding
Apr 10, 2021
5704e73
service account helm chart
May 3, 2021
34d5dda
README
May 3, 2021
0a7431d
README
May 3, 2021
8dbe15e
java-publishing
May 8, 2021
c7b531a
failure
May 8, 2021
25461a0
failure
May 8, 2021
ef34cf1
dir-and-pwd
May 11, 2021
4f9d0b9
readFile()
May 12, 2021
207e087
sh
May 15, 2021
fe8aec3
...
May 16, 2021
0fdf97b
PVCs
May 17, 2021
f534b9a
java9
May 20, 2021
266bf12
java 9
Jun 2, 2021
f9e0a3e
selenium-standalone-server
Jun 2, 2021
36bf444
chromedriver/java example
Jun 2, 2021
53044aa
remote chromedriver
Jun 2, 2021
da6c68d
Bump snakeyaml from 1.17 to 1.26 in /yaml/snakeyaml
dependabot[bot] Jun 4, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ target
.idea/workspace.xml
.idea
.gradle
.idea/*
5 changes: 3 additions & 2 deletions docker/loop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#
#
FROM centos:latest
RUN yum install -y iproute net-tools iptables
ADD ./loop.sh /root
CMD [ "/root/loop.sh" ]
RUN yum install -y iproute net-tools iptables && \
chmod +x /root/loop.sh
ENTRYPOINT [ "/root/loop.sh" ]
2 changes: 2 additions & 0 deletions docker/scriptless-loop/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
FROM centos:latest
ENTRYPOINT [ "sleep", "86400" ]
10 changes: 10 additions & 0 deletions docker/scriptless-loop/build-image-and-publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash

publish=false
[[ $1 = "-p" ]] && publish=true

docker build -t docker.io/ovidiufeodorov/scriptless-loop:latest .

if ${publish}; then
docker push docker.io/ovidiufeodorov/scriptless-loop:latest
fi
2 changes: 1 addition & 1 deletion gradle/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.gradle
gradle
build
21 changes: 0 additions & 21 deletions gradle/java-publishing/.idea/gradle.xml

This file was deleted.

31 changes: 14 additions & 17 deletions gradle/java-publishing/build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds/
*/

apply plugin: 'java'
apply plugin: 'maven-publish'

group = 'io.example'
version = '1.7'

ext.testRepositoryUrl = "http://example.com"

task srcJar(type: Jar) {

from sourceSets.main.allJava
Expand All @@ -31,17 +26,12 @@ publishing {
// if (gradle.startParameter.taskNames.contains('experiment')) {
// }

multiArtifactExample(MavenPublication) {

blue(MavenPublication) {
from components.java

artifact srcJar {

classifier "sources"
}

pom.withXml {

asNode().appendNode('description', 'Something that will be inserted as description')
}
}
Expand All @@ -54,19 +44,26 @@ publishing {
// commented out to avoid publishing accidentally

maven {

url testRepositoryUrl

credentials {

username testRepositoryUser
password testRepositoryPassword
}

authentication {
basic(BasicAuthentication)
}
}

// maven {
// url 'example'
// credentials {
// username testRepositoryUser
// password testRepositoryPassword
// }
// authentication {
// basic(BasicAuthentication)
// }
// }
}
}

Expand Down
Binary file modified gradle/java-publishing/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
53 changes: 33 additions & 20 deletions gradle/java-publishing/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 24 additions & 19 deletions gradle/java-publishing/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions gradle/java/source-set/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
plugins {
id 'java-library'
id 'idea'
}

task run(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = "playground.Main"
}

task sample {

doFirst {

def p = project
print "project name ${p.name}"
}
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading