Skip to content

Commit

Permalink
fixed @nonnull annotation
Browse files Browse the repository at this point in the history
Moved gateway-common to apiml-common

Signed-off-by: janda06 <david.janda@broadcom.com>
  • Loading branch information
jandadav committed Jul 4, 2019
1 parent 8c55f62 commit 55f54e7
Show file tree
Hide file tree
Showing 38 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ pipeline {
archiveArtifacts artifacts: 'integration-enabler-spring-v2/build/libs/**/*.jar'
archiveArtifacts artifacts: 'integration-enabler-spring-v1-sample-app/build/libs/**/*.jar'
archiveArtifacts artifacts: 'common-service-core/build/libs/**/*.jar'
archiveArtifacts artifacts: 'gateway-common/build/libs/**/*.jar'
archiveArtifacts artifacts: 'apiml-common/build/libs/**/*.jar'
archiveArtifacts artifacts: 'scripts/apiml_cm.sh'
archiveArtifacts artifacts: 'api-layer.tar.gz'

Expand Down
2 changes: 1 addition & 1 deletion api-catalog-services/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ gitProperties {
}

dependencies {
compile(project(':gateway-common'))
compile(project(':apiml-common'))
compile(project(':integration-enabler-spring-v2'))
compile(project(':common-service-core'))
compile(project(':security-module'))
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

package com.ca.mfaas.product.monitoring;

import lombok.NonNull;
import org.springframework.context.ApplicationContextInitializer;
import org.springframework.context.ConfigurableApplicationContext;
import javax.annotation.Nonnull;

/**
* This class initializes the system property that disables LatencyUtils thread that measures time by low level java api
Expand All @@ -21,7 +21,7 @@
public class LatencyUtilsConfigInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {
private static final String PROPERTY_KEY = "LatencyUtils.useActualTime";
@Override
public void initialize(@NonNull ConfigurableApplicationContext applicationContext) {
public void initialize(@Nonnull ConfigurableApplicationContext applicationContext) {
if (System.getProperties().getProperty(PROPERTY_KEY) == null) {
System.getProperties().setProperty(PROPERTY_KEY, "false");
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion discoverable-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ gitProperties {

dependencies {
compile(project(':integration-enabler-spring-v2'))
compile(project(':gateway-common'))
compile(project(':apiml-common'))

compile libraries.gson
compile libraries.spring_boot_starter_actuator
Expand Down
2 changes: 1 addition & 1 deletion discovery-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ gitProperties {
}

dependencies {
compile(project(':gateway-common'))
compile(project(':apiml-common'))

compile libraries.spring_boot_starter_web
compile libraries.spring_boot_starter_security
Expand Down
2 changes: 1 addition & 1 deletion gateway-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ gitProperties {

dependencies {
compile(project(':common-service-core'))
compile(project(':gateway-common'))
compile(project(':apiml-common'))
compile(project(':integration-enabler-spring-v2'))
compile(project(':security-service-client-spring'))

Expand Down
2 changes: 1 addition & 1 deletion gradle/coverage.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ext.javaProjectsWithUnitTests = [
'common-service-core',
'discoverable-client',
'discovery-service',
'gateway-common',
'apiml-common',
'gateway-service',
'integration-enabler-spring-v2',
'integration-enabler-java',
Expand Down
2 changes: 1 addition & 1 deletion gradle/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ext.javaEnablers = [

ext.javaLibraries = [
'common-service-core',
'gateway-common'
'apiml-common'
]

ext.serviceJars = [ 'zowe-install' ]
Expand Down
2 changes: 1 addition & 1 deletion security-module/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies {
compile(project(':common-service-core'))
compile(project(':gateway-common'))
compile(project(':apiml-common'))

compile libraries.jjwt
compile libraries.apacheCommons
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include 'helloworld-jersey'
include 'discovery-service'
include 'integration-enabler-spring-v2'
include 'integration-enabler-spring-v1'
include 'gateway-common'
include 'apiml-common'
include 'gateway-service'
include 'common-service-core'
include 'discoverable-client'
Expand Down

0 comments on commit 55f54e7

Please sign in to comment.