Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove connection-string elements from attributes #184

Merged
merged 3 commits into from
Feb 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"ms-dotnettools.csharp"
]
}
v-shenoy marked this conversation as resolved.
Show resolved Hide resolved
10 changes: 5 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pool:

jobs:
- job: buildExtension
displayName: Build WebJobs extension
displayName: WebJobs extension
steps:
- powershell: | # Allow tags matching v1.2.3 and v1.2.3-xyz1
$found = '$(Build.SourceBranchName)' | Select-String -Pattern '^v((\d+\.\d+\.\d+)(?:-\w+))*$'
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
artifact: drop-extension

- job: buildJavaBindings
displayName: Build Java library
displayName: Java library
steps:
- powershell: | # Allow tags matching v1.2.3 and v1.2.3-xyz1
$found = '$(Build.SourceBranchName)' | Select-String -Pattern '^v((\d+\.\d+\.\d+)(?:-\w+))*$'
Expand All @@ -167,19 +167,19 @@ jobs:
- task: Maven@3
displayName: Set library version
inputs:
mavenPomFile: binding-library\java\pom.xml
mavenPomFile: java-library\pom.xml
goals: versions:set
options: --define=newVersion=$(version)

- task: Maven@3
displayName: Build library
inputs:
mavenPomFile: binding-library\java\pom.xml
mavenPomFile: java-library\pom.xml
options: --batch-mode --define=gpg.skip --define=org.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn --update-snapshots

- powershell: |
$prefix = 'azure-functions-java-library-rabbitmq-$(version)'
$source = 'binding-library\java'
$source = 'java-library'
$destination = '$(Build.ArtifactStagingDirectory)\$(version)'
v-shenoy marked this conversation as resolved.
Show resolved Hide resolved

New-Item $destination -ItemType Directory
Expand Down
143 changes: 0 additions & 143 deletions binding-library/java/pom.xml

This file was deleted.

1 change: 0 additions & 1 deletion binding-library/java/release_notes.md

This file was deleted.

This file was deleted.

This file was deleted.

Loading