- Setting of project encoding
- Setting of maven plugin dependency suggested provided scope
This commit is contained in:
Lukas Eder 2023-05-12 15:21:23 +02:00
parent 7f972d19ce
commit 40a60d4d2e
2 changed files with 6 additions and 1 deletions

View File

@ -93,14 +93,17 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

View File

@ -19,7 +19,9 @@
<url>http://www.jooq.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- These in-memory DBs are used by jOOQ-meta-extensions and a variety of integration tests -->
<h2.version>2.1.214</h2.version>
<sqlite.version>3.39.4.1</sqlite.version>