This file contains 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
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
public class SVNCMSystem | |
{ | |
private static final String RECENT_CHANGES_FILES = "RecentChanges"; | |
private static final String ERROR_LOGS_FILES = "ErrorLogs"; | |
private static final String PROPERTIES_FILES = ".xml"; | |
private static final String TXT_FILES = ".txt"; |
This file contains 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
# Login | |
core/src/main/resources/jenkins/model/Jenkins/login.jelly | |
# Main page | |
core/src/main/resources/lib/layout/layout.jelly | |
core/src/main/resources/hudson/views/BuildButtonColumn/column.jelly | |
core/src/main/resources/lib/hudson/iconSize.jelly | |
core/src/main/resources/lib/hudson/rssBar.jelly | |
# Build |
This file contains 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
package com.nadeem.app; | |
import java.lang.management.ManagementFactory; | |
import javax.management.MBeanServer; | |
import org.apache.wicket.util.time.Duration; | |
import org.eclipse.jetty.jmx.MBeanContainer; | |
import org.eclipse.jetty.server.Handler; | |
import org.eclipse.jetty.server.Server; |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd"> | |
<Configure id="server" class="org.eclipse.jetty.server.Server"> | |
<New id="ServletContextHandler" class="org.eclipse.jetty.servlet.ServletContextHandler"> | |
<Set name="servletHandler"> | |
<New id="servletHandler" class="org.eclipse.jetty.servlet.ServletHandler"> | |
<Call id="proxyHolder" name="addServletWithMapping"> | |
<Arg>org.eclipse.jetty.servlets.ProxyServlet$Transparent</Arg> |
This file contains 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
import java.io.IOException; | |
import java.net.URI; | |
import java.net.URISyntaxException; | |
import java.security.KeyManagementException; | |
import java.security.KeyStoreException; | |
import java.security.NoSuchAlgorithmException; | |
import java.security.SecureRandom; | |
import java.util.List; | |
import javax.net.ssl.SSLContext; |
This file contains 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
<dependencies> | |
<dependency> | |
<groupId>org.keycloak</groupId> | |
<artifactId>keycloak-dependencies-server-all</artifactId> | |
<version>${project.version}</version> | |
<type>pom</type> | |
</dependency> | |
<dependency> | |
<groupId>org.jboss.resteasy</groupId> |
This file contains 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
\documentclass{article} | |
\usepackage[utf8]{inputenc} | |
\usepackage{geometry} | |
\usepackage{algorithm} | |
\usepackage{algpseudocode} | |
\begin{document} | |
% Insert the algorithm |
This file contains 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
C:\Users\Nadeem>gpg --full-gen-key | |
gpg (GnuPG) 2.1.15; Copyright (C) 2016 Free Software Foundation, Inc. | |
This is free software: you are free to change and redistribute it. | |
There is NO WARRANTY, to the extent permitted by law. | |
gpg: keybox 'C:/Users/Nadeem/AppData/Roaming/gnupg/pubring.kbx' created | |
Please select what kind of key you want: | |
(1) RSA and RSA (default) | |
(2) DSA and Elgamal | |
(3) DSA (sign only) |
This file contains 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
C:\Users\Nadeem>gpg --version | |
gpg (GnuPG) 2.1.15 | |
libgcrypt 1.7.3 | |
Copyright (C) 2016 Free Software Foundation, Inc. | |
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html> | |
This is free software: you are free to change and redistribute it. | |
There is NO WARRANTY, to the extent permitted by law. | |
Home: C:/Users/Nadeem/AppData/Roaming/gnupg | |
Supported algorithms: |
This file contains 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
<plugin> | |
<artifactId>maven-deploy-plugin</artifactId> | |
<version>2.8.2</version> | |
<executions> | |
<execution> | |
<id>default-deploy</id> | |
<phase>deploy</phase> | |
<goals> | |
<goal>deploy</goal> | |
</goals> |
OlderNewer