Skip to content

Commit

Permalink
build script cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ssathiah committed Aug 9, 2024
1 parent 592c832 commit 948cdb0
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Build-and-deploy-nnd-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
branches:
- main
- master
- rel-**
- Cndit-1600-*
paths-ignore:
- "docker-compose.yml"
Expand Down Expand Up @@ -54,6 +53,7 @@ jobs:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'

- name: create-nnd-data-poll-jar
working-directory: ./nnd-data-poll-service
run: ./gradlew build --no-daemon
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/Release-container-nnd-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'

- name: create-nnd-data-poll-jar
working-directory: ./nnd-data-poll-service
run: ./gradlew build --no-daemon
Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ version = '1.0.1-SNAPSHOT'
apply plugin: "com.dipien.semantic-version"

subprojects {

repositories {
mavenCentral()
maven {
Expand Down
11 changes: 0 additions & 11 deletions nnd-data-exchange-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ plugins {
id 'org.springframework.boot' version '3.3.2'
id 'io.spring.dependency-management' version '1.1.6'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'jacoco'
id "org.sonarqube" version "4.2.1.3168"
}

group = 'gov.cdc'
Expand All @@ -28,7 +26,6 @@ repositories {

test {
useJUnitPlatform()
finalizedBy jacocoTestReport
}

dependencies {
Expand All @@ -52,12 +49,4 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
sonarqube {
properties {
property "sonar.sourceEncoding", "UTF-8"
property "sonar.projectKey", "CDCgov_NEDSS-NNDSS"
property "sonar.organization", "cdcgov"
property "sonar.host.url", "https://sonarcloud.io"
}
}
1 change: 0 additions & 1 deletion nnd-message-processor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ test {
useJUnitPlatform()
}


bootJar {
archiveBaseName.set('netss-message-processor')
archiveVersion.set('')
Expand Down

0 comments on commit 948cdb0

Please sign in to comment.