chrore: update pom.xml

base pom.xml:

* update java compiler target to 1.11
* add versions for SLF4J dependeny

persistence.xml/pom.xml:

fix typo persitence -> persistence
This commit is contained in:
Thibaud Gasser 2019-10-19 17:43:47 +02:00
parent 8ea3c0b738
commit eea8074d32
2 changed files with 7 additions and 6 deletions

View File

@ -10,7 +10,7 @@
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>persitence</artifactId> <artifactId>persistence</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<dependencies> <dependencies>

View File

@ -16,21 +16,22 @@
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.11</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.11</maven.compiler.target>
<slf4j.version>1.7.28</slf4j.version>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
<version>RELEASE</version> <version>${slf4j.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId> <artifactId>slf4j-simple</artifactId>
<version>RELEASE</version> <version>${slf4j.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>