Commit 2640b21b1a6e2ebb546f716a7480c2f402545348

Authored by Mateusz Kopeć
1 parent 1d9cb7a6

pom improvements

Showing 1 changed file with 16 additions and 3 deletions
... ... @@ -3,7 +3,20 @@
3 3 <modelVersion>4.0.0</modelVersion>
4 4 <groupId>mkopec.summ</groupId>
5 5 <artifactId>eval</artifactId>
6   - <version>0.0.1-SNAPSHOT</version>
  6 + <version>0.1-SNAPSHOT</version>
  7 +
  8 + <properties>
  9 + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10 + <java.version.build>1.8</java.version.build>
  11 + </properties>
  12 +
  13 + <developers>
  14 + <developer>
  15 + <name>Mateusz Kopeć</name>
  16 + <organization>ICS PAS</organization>
  17 + <email>m.kopec@ipipan.waw.pl</email>
  18 + </developer>
  19 + </developers>
7 20  
8 21 <dependencies>
9 22 <dependency>
... ... @@ -24,8 +37,8 @@
24 37 <artifactId>maven-compiler-plugin</artifactId>
25 38 <version>3.1</version>
26 39 <configuration>
27   - <source>1.8</source>
28   - <target>1.8</target>
  40 + <source>${java.version.build}</source>
  41 + <target>${java.version.build}</target>
29 42 </configuration>
30 43 </plugin>
31 44 </plugins>
... ...