Skip to content

Commit 2f3271f

Browse files
fix file naming issues on Azure build
1 parent 470be16 commit 2f3271f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

azure-pipelines.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ steps:
5858
files: '*.jar'
5959
downloadPath: '$(Pipeline.Workspace)/lib'
6060

61+
- task: Bash@3
62+
inputs:
63+
targetType: 'inline'
64+
script: for f in $(Pipeline.Workspace)/lib/plsql-4.2.1*.jar; do echo $f; cp $f $(Pipeline.Workspace)/lib/plsql-4.2.1-SNAPSHOT.jar; done
65+
6166
- task: Maven@3
6267
displayName: 'Maven com.trivadis.tvdcc'
6368
inputs:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<artifactId>plsql</artifactId>
4444
<version>4.2.1-SNAPSHOT</version>
4545
<scope>system</scope>
46-
<systemPath>${tvdcc.basedir}/lib/plsql-4.2.1-snapshot.jar</systemPath>
46+
<systemPath>${tvdcc.basedir}/lib/plsql-4.2.1-SNAPSHOT.jar</systemPath>
4747
</dependency>
4848
<dependency>
4949
<!-- required to build SonarQube plugin for minimal target version -->

0 commit comments

Comments
 (0)