Skip to content

Commit

Permalink
Merge pull request #50 from stokito/49-javac-version
Browse files Browse the repository at this point in the history
#49 Java target version
  • Loading branch information
lvca committed Mar 30, 2015
2 parents 3c6fa28 + bdb411a commit 3ff358a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-etl</artifactId>
<version>2.0.3</version>
<version>2.0.3-SNAPSHOT</version>
<packaging>jar</packaging>

<name>orientdb-etl</name>
Expand Down Expand Up @@ -82,11 +82,12 @@
</distributionManagement>

<properties>
<jdkVersion>1.6</jdkVersion>
<maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel>
<maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<blueprints.version>2.6.0</blueprints.version>
<javac.src.version>1.6</javac.src.version>
<javac.target.version>1.6</javac.target.version>
<orientdb.version>2.0</orientdb.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<repositories>
Expand All @@ -110,6 +111,9 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${maven.compile.sourceLevel}</source>
<target>${maven.compile.targetLevel}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>

Expand Down

0 comments on commit 3ff358a

Please sign in to comment.