Skip to content

Commit c10fd8e

Browse files
hgschmiedain
authored andcommittedSep 25, 2014
Allow Eclipse to build presto again.
Ignore the takari plugins and add .checkstyle to .gitignores
1 parent 2b4a2d3 commit c10fd8e

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ test-output
1919
benchmark_outputs
2020
*.pyc
2121
*.class
22+
.checkstyle

‎pom.xml

+29
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,35 @@
700700
<ignore />
701701
</action>
702702
</pluginExecution>
703+
<pluginExecution>
704+
<pluginExecutionFilter>
705+
<groupId>io.takari.maven.plugins</groupId>
706+
<artifactId>presto-maven-plugin</artifactId>
707+
<versionRange>[0,)</versionRange>
708+
<goals>
709+
<goal>generate-service-descriptor</goal>
710+
</goals>
711+
</pluginExecutionFilter>
712+
<action>
713+
<ignore />
714+
</action>
715+
</pluginExecution>
716+
<pluginExecution>
717+
<pluginExecutionFilter>
718+
<groupId>io.takari.maven.plugins</groupId>
719+
<artifactId>takari-lifecycle-plugin</artifactId>
720+
<versionRange>[0,)</versionRange>
721+
<goals>
722+
<goal>compile</goal>
723+
<goal>process-resources</goal>
724+
<goal>process-test-resources</goal>
725+
<goal>testCompile</goal>
726+
</goals>
727+
</pluginExecutionFilter>
728+
<action>
729+
<ignore />
730+
</action>
731+
</pluginExecution>
703732
</pluginExecutions>
704733
</lifecycleMappingMetadata>
705734
</configuration>

‎presto-server/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<properties>
1616
<air.main.basedir>${project.parent.basedir}</air.main.basedir>
1717
<air.check.skip-duplicate-finder>true</air.check.skip-duplicate-finder>
18+
<air.check.skip-findbugs>true</air.check.skip-findbugs>
1819
<air.check.skip-dependency>true</air.check.skip-dependency>
1920
<air.check.skip-dependency-version-check>true</air.check.skip-dependency-version-check>
2021

0 commit comments

Comments
 (0)
Please sign in to comment.