-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '5.7.x' into renovate/micronaut.validation
- Loading branch information
Showing
28 changed files
with
860 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 0 additions & 17 deletions
17
...ources/META-INF/native-image/io.micronaut.sql/hibernate-jpa-graal/native-image.properties
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
.../resources/META-INF/native-image/io.micronaut.sql/hibernate-jpa-graal/reflect-config.json
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
...s/META-INF/native-image/io.micronaut.sql/hibernate-reactive-graal/native-image.properties
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
...ain/resources/META-INF/native-image/io.micronaut.sql/jdbc-dbcp-graal/resource-config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"bundles": [ | ||
{"name": "org.apache.commons.dbcp2.LocalStrings"} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...main/resources/META-INF/native-image/io.micronaut.sql/jdbc-tomcat-graal/proxy-config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"interfaces": [ | ||
"java.sql.ResultSet" | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
plugins { | ||
id 'io.micronaut.build.internal.test-application' | ||
} | ||
|
||
dependencies { | ||
implementation projects.micronautJdbcDbcp | ||
implementation projects.micronautTests.micronautCommonSync | ||
|
||
runtimeOnly libs.managed.postgresql | ||
|
||
testImplementation projects.micronautTests.micronautCommonTests | ||
testImplementation(mnData.micronaut.data.tx.jdbc) | ||
} | ||
|
||
micronaut { | ||
testResources { | ||
additionalModules.add(JDBC_POSTGRESQL) | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
tests/jdbc-dbcp-tests/jdbc-dbcp-postgres/src/main/java/example/jdbc/ucp/sync/Owner.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package example.jdbc.ucp.sync; | ||
|
||
import example.domain.IOwner; | ||
import io.micronaut.core.annotation.Creator; | ||
import io.micronaut.serde.annotation.Serdeable; | ||
|
||
@Serdeable | ||
public class Owner implements IOwner { | ||
|
||
private Long id; | ||
private String name; | ||
private int age; | ||
|
||
Owner() { | ||
} | ||
|
||
@Creator | ||
public Owner(Long id, String name, int age) { | ||
this.id = id; | ||
this.name = name; | ||
this.age = age; | ||
} | ||
|
||
@Override | ||
public Long getId() { | ||
return id; | ||
} | ||
|
||
public void setId(Long id) { | ||
this.id = id; | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return name; | ||
} | ||
|
||
@Override | ||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
@Override | ||
public int getAge() { | ||
return age; | ||
} | ||
|
||
@Override | ||
public void setAge(int age) { | ||
this.age = age; | ||
} | ||
} |
Oops, something went wrong.