Eclipse Header einfügen
diff --git a/testImportGridFailures/Dockerfile_DevServer b/testImportGridFailures/Dockerfile_DevServer index 88a7662..ed7af22 100644 --- a/testImportGridFailures/Dockerfile_DevServer +++ b/testImportGridFailures/Dockerfile_DevServer
@@ -1,3 +1,16 @@ +# ******************************************************************************* +# * Copyright (c) 2019 Contributors to the Eclipse Foundation +# * +# * See the NOTICE file(s) distributed with this work for additional +# * information regarding copyright ownership. +# * +# * This program and the accompanying materials are made available under the +# * terms of the Eclipse Public License v. 2.0 which is available at +# * http://www.eclipse.org/legal/epl-2.0. +# * +# * SPDX-License-Identifier: EPL-2.0 +# ******************************************************************************* + FROM openjdk:8-jre-alpine ENV HTTP_PROXY http://webproxy3.pta.de:8080
diff --git a/testImportGridFailures/Dockerfile_DevServerUnsecure b/testImportGridFailures/Dockerfile_DevServerUnsecure index 7af0f68..48e1a0c 100644 --- a/testImportGridFailures/Dockerfile_DevServerUnsecure +++ b/testImportGridFailures/Dockerfile_DevServerUnsecure
@@ -1,3 +1,16 @@ +# ******************************************************************************* +# * Copyright (c) 2019 Contributors to the Eclipse Foundation +# * +# * See the NOTICE file(s) distributed with this work for additional +# * information regarding copyright ownership. +# * +# * This program and the accompanying materials are made available under the +# * terms of the Eclipse Public License v. 2.0 which is available at +# * http://www.eclipse.org/legal/epl-2.0. +# * +# * SPDX-License-Identifier: EPL-2.0 +# ******************************************************************************* + FROM openjdk:8-jre-alpine ENV HTTP_PROXY http://webproxy3.pta.de:8080
diff --git a/testImportGridFailures/pom.xml b/testImportGridFailures/pom.xml index 268f72c..5c37235 100644 --- a/testImportGridFailures/pom.xml +++ b/testImportGridFailures/pom.xml
@@ -1,4 +1,18 @@ <?xml version="1.0" encoding="UTF-8"?> +<!-- + ******************************************************************************* + * Copyright (c) 2019 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + ******************************************************************************* +--> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion>
diff --git a/testImportGridFailures/sonar-project.properties b/testImportGridFailures/sonar-project.properties index 2d905d0..aa53eca 100644 --- a/testImportGridFailures/sonar-project.properties +++ b/testImportGridFailures/sonar-project.properties
@@ -1,3 +1,15 @@ +# ******************************************************************************* +# * Copyright (c) 2019 Contributors to the Eclipse Foundation +# * +# * See the NOTICE file(s) distributed with this work for additional +# * information regarding copyright ownership. +# * +# * This program and the accompanying materials are made available under the +# * terms of the Eclipse Public License v. 2.0 which is available at +# * http://www.eclipse.org/legal/epl-2.0. +# * +# * SPDX-License-Identifier: EPL-2.0 +# ******************************************************************************* # must be unique in a given SonarQube instance sonar.projectKey=openk.pta.de:testImportGridFailures # this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
diff --git a/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/TestImportGridFailuresApplication.java b/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/TestImportGridFailuresApplication.java index 5e18d29..e031cbd 100644 --- a/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/TestImportGridFailuresApplication.java +++ b/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/TestImportGridFailuresApplication.java
@@ -1,3 +1,17 @@ +/* + ******************************************************************************* + * Copyright (c) 2019 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + ******************************************************************************* + */ package org.eclipse.openk.gridfailureinformation.jobs.importgridfailures; import org.springframework.boot.SpringApplication;
diff --git a/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/config/EventProducerConfig.java b/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/config/EventProducerConfig.java index 88c8f5b..1dab7e1 100644 --- a/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/config/EventProducerConfig.java +++ b/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/config/EventProducerConfig.java
@@ -1,3 +1,17 @@ +/* + ******************************************************************************* + * Copyright (c) 2019 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + ******************************************************************************* + */ package org.eclipse.openk.gridfailureinformation.jobs.importgridfailures.config; import lombok.extern.log4j.Log4j2;
diff --git a/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/config/SwaggerConfig.java b/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/config/SwaggerConfig.java index 66eb015..d015ba2 100644 --- a/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/config/SwaggerConfig.java +++ b/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/config/SwaggerConfig.java
@@ -1,4 +1,17 @@ - +/* + ******************************************************************************* + * Copyright (c) 2019 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + ******************************************************************************* + */ package org.eclipse.openk.gridfailureinformation.jobs.importgridfailures.config; import lombok.extern.log4j.Log4j2;
diff --git a/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/exceptions/UnauthorizedException.java b/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/exceptions/UnauthorizedException.java index b0d1619..dbc6ca3 100644 --- a/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/exceptions/UnauthorizedException.java +++ b/testImportGridFailures/src/main/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/exceptions/UnauthorizedException.java
@@ -1,3 +1,17 @@ +/* + ******************************************************************************* + * Copyright (c) 2019 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + ******************************************************************************* + */ package org.eclipse.openk.gridfailureinformation.jobs.importgridfailures.exceptions; import org.springframework.http.HttpStatus;
diff --git a/testImportGridFailures/src/main/resources/messages.properties b/testImportGridFailures/src/main/resources/messages.properties index b8b3b11..fc08b29 100644 --- a/testImportGridFailures/src/main/resources/messages.properties +++ b/testImportGridFailures/src/main/resources/messages.properties
@@ -1,3 +1,15 @@ +# ******************************************************************************* +# * Copyright (c) 2019 Contributors to the Eclipse Foundation +# * +# * See the NOTICE file(s) distributed with this work for additional +# * information regarding copyright ownership. +# * +# * This program and the accompanying materials are made available under the +# * terms of the Eclipse Public License v. 2.0 which is available at +# * http://www.eclipse.org/legal/epl-2.0. +# * +# * SPDX-License-Identifier: EPL-2.0 +# ******************************************************************************* #Fehlermeldungen could.not.push.message=Das Objekt konnte nicht an RabbitMQ gesendet werden.
diff --git a/testImportGridFailures/src/test/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/TestImportGridFailuresApplicationTests.java b/testImportGridFailures/src/test/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/TestImportGridFailuresApplicationTests.java index b5cb63e..d849354 100644 --- a/testImportGridFailures/src/test/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/TestImportGridFailuresApplicationTests.java +++ b/testImportGridFailures/src/test/java/org/eclipse/openk/gridfailureinformation/jobs/importgridfailures/TestImportGridFailuresApplicationTests.java
@@ -1,3 +1,17 @@ +/* + ******************************************************************************* + * Copyright (c) 2019 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + ******************************************************************************* + */ package org.eclipse.openk.gridfailureinformation.jobs.importgridfailures; import org.junit.jupiter.api.Test;