Skip to content

Commit

Permalink
removed import
Browse files Browse the repository at this point in the history
  • Loading branch information
Kishorecoder96 committed Oct 30, 2024
1 parent 358ce5c commit cfa3440
Show file tree
Hide file tree
Showing 53 changed files with 140 additions and 175 deletions.

This file was deleted.

Empty file.
Empty file.
Empty file modified jkube-kit/build/service/buildpacks/src/test/resources/pack
100755 → 100644
Empty file.
Empty file modified jkube-kit/build/service/buildpacks/src/test/resources/pack.bat
100755 → 100644
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
/*
* Copyright (c) 2019 Red Hat, Inc.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at:
*
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package org.eclipse.jkube.kit.common.util;

import org.junit.jupiter.api.Test;

import static org.assertj.core.api.Assertions.assertThat;

class Base64UtilTest {

@Test
void testBase64EncodeAndDecode() {
String raw = "Send reinforcements";
String encode = "U2VuZCByZWluZm9yY2VtZW50cw==";
assertThat(Base64Util.encodeToString(raw)).isEqualTo(encode);
assertThat(Base64Util.decodeToString(encode)).isEqualTo(raw);
}
}
/*
* Copyright (c) 2019 Red Hat, Inc.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at:
*
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package org.eclipse.jkube.kit.common.util;

import org.junit.jupiter.api.Test;

import static org.assertj.core.api.Assertions.assertThat;

class Base64UtilTest {

@Test
void testBase64EncodeAndDecode() {
String raw = "Send reinforcements";
String encode = "U2VuZCByZWluZm9yY2VtZW50cw==";
assertThat(Base64Util.encodeToString(raw)).isEqualTo(encode);
assertThat(Base64Util.decodeToString(encode)).isEqualTo(raw);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import org.eclipse.jkube.kit.common.JKubeException;
import org.eclipse.jkube.kit.common.KitLogger;
import org.eclipse.jkube.kit.common.util.KubernetesHelper;
import org.eclipse.jkube.kit.config.image.build.JKubeBuildStrategy;
import org.eclipse.jkube.kit.config.service.portforward.PortForwardPodWatcher;

import io.fabric8.kubernetes.api.model.Container;
Expand Down
Empty file modified jkube-kit/doc/ci-docs.sh
100755 → 100644
Empty file.
Empty file modified jkube-kit/jkube-kit-spring-boot/src/test/resources/dummy-java
100755 → 100644
Empty file.
Empty file modified kubernetes-maven-plugin/doc/ci-docs.sh
100755 → 100644
Empty file.
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
/*
* Copyright (c) 2019 Red Hat, Inc.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at:
*
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class Application {

@RequestMapping("/")
public String home() {
return "Hello World";
}

public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}

}
/*
* Copyright (c) 2019 Red Hat, Inc.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at:
*
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class Application {

@RequestMapping("/")
public String home() {
return "Hello World";
}

public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}

}
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
#
# Copyright (c) 2019 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at:
#
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
#

apiVersion: v1
kind: Secret
metadata:
name: mydockerkey
namespace: default
annotations:
jkube.eclipse.org/dockerServerId: docker.io
#
# Copyright (c) 2019 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at:
#
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
#

apiVersion: v1
kind: Secret
metadata:
name: mydockerkey
namespace: default
annotations:
jkube.eclipse.org/dockerServerId: docker.io
type: kubernetes.io/dockercfg
Empty file modified mvnw
100755 → 100644
Empty file.
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
/*
* Copyright (c) 2019 Red Hat, Inc.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at:
*
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class Application {

@RequestMapping("/")
public String home() {
return "Hello World";
}

public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}

}
/*
* Copyright (c) 2019 Red Hat, Inc.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at:
*
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class Application {

@RequestMapping("/")
public String home() {
return "Hello World";
}

public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}

}
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
#
# Copyright (c) 2019 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at:
#
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
#

apiVersion: v1
kind: Secret
metadata:
name: mydockerkey
namespace: default
annotations:
jkube.eclipse.org/dockerServerId: docker.io
type: kubernetes.io/dockercfg
#
# Copyright (c) 2019 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at:
#
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
#

apiVersion: v1
kind: Secret
metadata:
name: mydockerkey
namespace: default
annotations:
jkube.eclipse.org/dockerServerId: docker.io
type: kubernetes.io/dockercfg
Empty file.
Empty file.
Empty file modified quickstarts/gradle/docker-file-provided-context-dir/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/docker-file-provided-docker-file/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/docker-file-simple/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/groovy-dsl-config/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/micronaut-customized-image/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/micronaut-customized-image/gradlew.bat
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/micronaut/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/micronaut4/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/openliberty/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/plugin/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/quarkus-customized-image/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/quarkus-customized-image/gradlew.bat
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/quarkus/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/quarkus/gradlew.bat
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/spring-boot-camel-complete/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/spring-boot-crd/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/spring-boot-helm/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/spring-boot-watch/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/spring-boot-with-jib-assembly/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/spring-boot/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/vertx/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/webapp-custom/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/webapp-jetty/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/webapp-wildfly/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/gradle/webapp/gradlew
100755 → 100644
Empty file.
Empty file modified quickstarts/kit/custom-istio-enricher-gradle/gradlew
100755 → 100644
Empty file.

This file was deleted.

17 changes: 0 additions & 17 deletions quickstarts/maven/spring-boot/src/main/deployments/bin/test.sh

This file was deleted.

Empty file modified quickstarts/maven/tomee/src/main/tomee/conf/logging.properties
100755 → 100644
Empty file.
Empty file modified scripts/changelog.sh
100755 → 100644
Empty file.
Empty file modified scripts/common.sh
100755 → 100644
Empty file.
Empty file modified scripts/eclipse-dash-tool.sh
100755 → 100644
Empty file.
Empty file modified scripts/generateDoc.sh
100755 → 100644
Empty file.
Empty file modified scripts/quickstarts.sh
100755 → 100644
Empty file.
Empty file modified scripts/release.sh
100755 → 100644
Empty file.

0 comments on commit cfa3440

Please sign in to comment.