File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/main/java/org/utplsql/maven/plugin Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 2525 <dependency >
2626 <groupId >org.utplsql</groupId >
2727 <artifactId >java-api</artifactId >
28- <version >3.1.0 </version >
28+ <version >3.1.1-SNAPSHOT </version >
2929 </dependency >
3030
3131 <dependency >
Original file line number Diff line number Diff line change 1616import org .apache .maven .plugins .annotations .Parameter ;
1717import org .utplsql .api .DBHelper ;
1818import org .utplsql .api .FileMapperOptions ;
19+ import org .utplsql .api .JavaApiVersionInfo ;
1920import org .utplsql .api .KeyValuePair ;
2021import org .utplsql .api .TestRunner ;
2122import org .utplsql .api .Version ;
@@ -124,6 +125,7 @@ public class UtPLSQLMojo extends AbstractMojo
124125 @ Override
125126 public void execute () throws MojoExecutionException
126127 {
128+ getLog ().debug ("Java Api Version = " +JavaApiVersionInfo .getVersion ());
127129 loadDefaultCredentials ();
128130
129131 Connection connection = null ;
@@ -134,6 +136,7 @@ public void execute() throws MojoExecutionException
134136
135137 // Create the Connection to the Database
136138 connection = DriverManager .getConnection (url , user , password );
139+ getLog ().info ("utPLSQL Version = " +DBHelper .getDatabaseFrameworkVersion (connection ));
137140
138141 List <Reporter > reporterList = initReporters (connection );
139142
You can’t perform that action at this time.
0 commit comments