Skip to content

Commit 9d60472

Browse files
committed
User FREEPDB1 SID
1 parent 36d6ab3 commit 9d60472

File tree

32 files changed

+33
-37
lines changed

32 files changed

+33
-37
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Please refer to the following usage example for the parameters descriptions:
7575
<properties>
7676
<!-- URL of the connection to the database. -->
7777
<!-- Can also be passed as execution parameters. -->
78-
<!-- -DdbUrl="jdbc:oracle:thin:@127.0.0.1:1521:xe" -->
78+
<!-- -DdbUrl="jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1" -->
7979
<dbUrl>url_of_connection</dbUrl>
8080
<!-- Database connection user. -->
8181
<!-- -DdbUser="user" -->

src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,7 @@
1212
import java.io.PrintStream;
1313
import java.util.List;
1414

15-
import static org.junit.Assert.assertEquals;
16-
import static org.junit.Assert.assertFalse;
17-
import static org.junit.Assert.assertNotNull;
18-
import static org.junit.Assert.assertThrows;
19-
import static org.junit.Assert.assertTrue;
15+
import static org.junit.Assert.*;
2016

2117
public class UtPlsqlMojoTest {
2218

@@ -308,7 +304,7 @@ public void dbms_output() throws Exception {
308304
*/
309305
@Test
310306
public void db_config_using_system_properties() throws Exception {
311-
System.setProperty("dbUrl", "jdbc:oracle:thin:@localhost:1521:xe");
307+
System.setProperty("dbUrl", "jdbc:oracle:thin:@localhost:1521:FREEPDB1");
312308
System.setProperty("dbUser", "UT3");
313309
System.setProperty("dbPass", "UT3");
314310

src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>pom</packaging>
1010

1111
<properties>
12-
<dbUrl>jdbc:oracle:thin:@localhost:1521:xe</dbUrl>
12+
<dbUrl>jdbc:oracle:thin:@localhost:1521:FREEPDB1</dbUrl>
1313
<dbUser>UT3</dbUser>
1414
<dbPass>UT3</dbPass>
1515
</properties>

src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>pom</packaging>
1010

1111
<properties>
12-
<dbUrl>jdbc:oracle:thin:@localhost:1521:xe</dbUrl>
12+
<dbUrl>jdbc:oracle:thin:@localhost:1521:FREEPDB1</dbUrl>
1313
<dbUser>UT3</dbUser>
1414
<dbPass>UT3</dbPass>
1515
</properties>

src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>pom</packaging>
1010

1111
<properties>
12-
<dbUrl>jdbc:oracle:thin:@localhost:1521:xe</dbUrl>
12+
<dbUrl>jdbc:oracle:thin:@localhost:1521:FREEPDB1</dbUrl>
1313
<dbUser>UT3</dbUser>
1414
<dbPass>UT3</dbPass>
1515
</properties>

src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>pom</packaging>
1010

1111
<properties>
12-
<dbUrl>jdbc:oracle:thin:@localhost:1521:xe</dbUrl>
12+
<dbUrl>jdbc:oracle:thin:@localhost:1521:FREEPDB1</dbUrl>
1313
<dbUser>UT3</dbUser>
1414
<dbPass>UT3</dbPass>
1515
</properties>

src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>pom</packaging>
1010

1111
<properties>
12-
<dbUrl>jdbc:oracle:thin:@localhost:1521:xe</dbUrl>
12+
<dbUrl>jdbc:oracle:thin:@localhost:1521:FREEPDB1</dbUrl>
1313
<dbUser>UT3</dbUser>
1414
<dbPass>UT3</dbPass>
1515
</properties>

src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>pom</packaging>
1010

1111
<properties>
12-
<dbUrl>jdbc:oracle:thin:@localhost:1521:xe</dbUrl>
12+
<dbUrl>jdbc:oracle:thin:@localhost:1521:FREEPDB1</dbUrl>
1313
<dbUser>UT3</dbUser>
1414
<dbPass>UT3</dbPass>
1515
</properties>

src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>pom</packaging>
1010

1111
<properties>
12-
<dbUrl>jdbc:oracle:thin:@localhost:1521:xe</dbUrl>
12+
<dbUrl>jdbc:oracle:thin:@localhost:1521:FREEPDB1</dbUrl>
1313
<dbUser>UT3</dbUser>
1414
<dbPass>UT3</dbPass>
1515
</properties>

src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>pom</packaging>
1010

1111
<properties>
12-
<dbUrl>jdbc:oracle:thin:@localhost:1521:xe</dbUrl>
12+
<dbUrl>jdbc:oracle:thin:@localhost:1521:FREEPDB1</dbUrl>
1313
<dbUser>UT3</dbUser>
1414
<dbPass>UT3</dbPass>
1515
</properties>

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy