Skip to content
This repository has been archived by the owner on Sep 7, 2019. It is now read-only.

Commit

Permalink
Merge pull request #26 from sailajaa/FHAC_463A
Browse files Browse the repository at this point in the history
FHAC-463:added complier source,target entry to pom
  • Loading branch information
christophermay07 committed Jul 29, 2015
2 parents 09a067f + 7c51496 commit ea23879
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions pom.xml
Expand Up @@ -87,8 +87,8 @@

<build>
<!-- Caution: If <resources> or <testResources> is overridden by
a child POM then all <resource> and <testResouce> elements will need to be
placed within the child POM that overrides the <resourcs> or <testResources> -->
a child POM then all <resource> and <testResouce> elements will need to be
placed within the child POM that overrides the <resourcs> or <testResources> -->
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
Expand Down Expand Up @@ -135,7 +135,7 @@
<execution>
<id>unpack-xsd-files</id>
<!-- Using the initialize phase because it is before
the generate sources phase -->
the generate sources phase -->
<phase>initialize</phase>
<goals>
<goal>unpack</goal>
Expand Down Expand Up @@ -193,6 +193,18 @@
</execution>
</executions>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<testSource>1.7</testSource>
<testTarget>1.7</testTarget>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down

0 comments on commit ea23879

Please sign in to comment.