Skip to content

Commit

Permalink
use plsql-4.2.1 and tvdcc-4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippSalvisberg committed Oct 4, 2023
1 parent 67c068d commit bef466c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ steps:
packageType: 'maven'
feed: '18837db9-b003-4158-aea6-2cbe5db0f9f0/2243676f-5a13-4f9a-842a-0d4b65c80104'
definition: 'trivadis.tvdcc:tvdcc'
version: '4.4.0-snapshot' # lowercase is necessary
version: '4.4.0' # lowercase is necessary
files: '*.jar'
downloadPath: '$(Pipeline.Workspace)'

Expand All @@ -54,14 +54,14 @@ steps:
packageType: 'maven'
feed: '18837db9-b003-4158-aea6-2cbe5db0f9f0/2243676f-5a13-4f9a-842a-0d4b65c80104'
definition: 'trivadis.oracle:plsql'
version: '4.2.1-snapshot' # lowercase is necessary
version: '4.2.1' # lowercase is necessary
files: '*.jar'
downloadPath: '$(Pipeline.Workspace)/lib'

- task: Bash@3
inputs:
targetType: 'inline'
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
script: for f in $(Pipeline.Workspace)/lib/plsql-4.2.1*.jar; do echo $f; cp $f $(Pipeline.Workspace)/lib/plsql-4.2.1.jar; done

- task: Maven@3
displayName: 'Maven com.trivadis.tvdcc'
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@
<!-- contains TrivadisGuidelines3 -->
<groupId>trivadis.tvdcc</groupId>
<artifactId>tvdcc</artifactId>
<version>4.4.0-SNAPSHOT</version>
<version>4.4.0</version>
<scope>system</scope>
<systemPath>${tvdcc.basedir}/tvdcc.jar</systemPath>
</dependency>
<dependency>
<!-- contains PLSQLValidator -->
<groupId>trivadis.oracle</groupId>
<artifactId>plsql</artifactId>
<version>4.2.1-SNAPSHOT</version>
<version>4.2.1</version>
<scope>system</scope>
<systemPath>${tvdcc.basedir}/lib/plsql-4.2.1-SNAPSHOT.jar</systemPath>
<systemPath>${tvdcc.basedir}/lib/plsql-4.2.1.jar</systemPath>
</dependency>
<dependency>
<!-- required to build SonarQube plugin for minimal target version -->
Expand Down

0 comments on commit bef466c

Please sign in to comment.