Skip to content

Commit

Permalink
pom.xml: add compiler versions and source encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominick Leppich committed Aug 15, 2024
1 parent 016b9e7 commit 7a3e4fc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 6 additions & 0 deletions module-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
<description>Spring Boot based RESTful web service for vocabulary management</description>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<poi.version>5.2.5</poi.version>
</properties>
<dependencies>
Expand Down
7 changes: 7 additions & 0 deletions module-exchange/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
<name>Vocabulary Exchange</name>
<description>Vocabulary data exchange classes</description>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- RELEASE REPOSITORIES -->
<distributionManagement>
<repository>
Expand Down
3 changes: 0 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
<name>Vocabulary-Server</name>
<packaging>pom</packaging>
<description>RESTful webservice for vocabulary management</description>
<properties>
<java.version>11</java.version>
</properties>
<modules>
<module>module-core</module>
<module>module-exchange</module>
Expand Down

0 comments on commit 7a3e4fc

Please sign in to comment.