We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 516d26f commit 2fefc10Copy full SHA for 2fefc10
1 file changed
src/test/java/org/utplsql/maven/plugin/UtPLSQLMojoIT.java
@@ -0,0 +1,19 @@
1
+package org.utplsql.maven.plugin;
2
+
3
+import org.apache.maven.plugin.MojoExecutionException;
4
+import org.apache.maven.project.MavenProject;
5
+import org.junit.Test;
6
7
+public class UtPLSQLMojoIT {
8
9
+ @Test
10
+ public void execute() throws MojoExecutionException {
11
+ UtPLSQLMojo utPLSQLMojo = new UtPLSQLMojo();
12
+ utPLSQLMojo.project = new MavenProject();
13
+ utPLSQLMojo.url = "jdbc:oracle:thin:@127.0.0.1:1521:XE";
14
+ utPLSQLMojo.user = "UT3";
15
+ utPLSQLMojo.password = "UT3";
16
17
+ utPLSQLMojo.execute();
18
+ }
19
+}
0 commit comments