Updated Branches: refs/heads/trunk d7fe9b011 -> 80d4b358b
Fix Avro build Project: http://git-wip-us.apache.org/repos/asf/mina/repo Commit: http://git-wip-us.apache.org/repos/asf/mina/commit/80d4b358 Tree: http://git-wip-us.apache.org/repos/asf/mina/tree/80d4b358 Diff: http://git-wip-us.apache.org/repos/asf/mina/diff/80d4b358 Branch: refs/heads/trunk Commit: 80d4b358bb76eca92741379e40e47d838db09e12 Parents: d7fe9b0 Author: Jeff MAURY <[email protected]> Authored: Sun Jul 28 10:52:57 2013 +0200 Committer: Jeff MAURY <[email protected]> Committed: Sun Jul 28 10:52:57 2013 +0200 ---------------------------------------------------------------------- avro/pom.xml | 50 +++++++++++++++++++++----------------------------- 1 file changed, 21 insertions(+), 29 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mina/blob/80d4b358/avro/pom.xml ---------------------------------------------------------------------- diff --git a/avro/pom.xml b/avro/pom.xml index 4c7775f..2d54159 100644 --- a/avro/pom.xml +++ b/avro/pom.xml @@ -56,34 +56,26 @@ <type>test-jar</type> </dependency> </dependencies> - <!--<build>--> - <!--<plugins>--> - <!--<plugin>--> - <!--<groupId>org.apache.avro</groupId>--> - <!--<artifactId>avro-maven-plugin</artifactId>--> - <!--<version>1.7.4</version>--> - <!--<executions>--> - <!--<execution>--> - <!--<phase>generate-sources</phase>--> - <!--<goals>--> - <!--<goal>schema</goal>--> - <!--</goals>--> - <!--<configuration>--> - <!--<sourceDirectory>${project.basedir}/src/test/resources/</sourceDirectory>--> - <!--<outputDirectory>${project.basedir}/src/test/java/</outputDirectory>--> - <!--</configuration>--> - <!--</execution>--> - <!--</executions>--> - <!--</plugin>--> - <!--<plugin>--> - <!--<groupId>org.apache.maven.plugins</groupId>--> - <!--<artifactId>maven-compiler-plugin</artifactId>--> - <!--<configuration>--> - <!--<source>1.7</source>--> - <!--<target>1.7</target>--> - <!--</configuration>--> - <!--</plugin>--> - <!--</plugins>--> - <!--</build>--> + <build> + <plugins> + <plugin> + <groupId>org.apache.avro</groupId> + <artifactId>avro-maven-plugin</artifactId> + <version>1.7.4</version> + <executions> + <execution> + <phase>generate-test-sources</phase> + <goals> + <goal>schema</goal> + </goals> + <configuration> + <sourceDirectory>${project.basedir}/src/test/resources/</sourceDirectory> + <outputDirectory>${project.basedir}/src/test/java/</outputDirectory> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> </project>
