Skip to content

Commit

Permalink
#67 - Added hibernate6-text
Browse files Browse the repository at this point in the history
  • Loading branch information
starnowski committed Dec 17, 2023
1 parent 2bc22dd commit 14c5570
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<module>json-core</module>
<module>hibernate6-core</module>
<module>text</module>
<module>text/hibernate6-text</module>
</modules>

<properties>
Expand Down
24 changes: 24 additions & 0 deletions text/hibernate6-text/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.starnowski.posjsonhelper</groupId>
<artifactId>parent</artifactId>
<version>0.3.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<groupId>com.github.starnowski.posjsonhelper.text</groupId>
<artifactId>hibernate6-text</artifactId>

<properties>
<org.hibernate.hibernate.core.version>5.6.3.Final</org.hibernate.hibernate.core.version>
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<license.dir>${project.parent.basedir}</license.dir>
</properties>

</project>
6 changes: 4 additions & 2 deletions text/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@
<artifactId>parent</artifactId>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<java.version>1.8</java.version>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<license.dir>${basedir}</license.dir>
</properties>

</project>

0 comments on commit 14c5570

Please sign in to comment.