lesfurets / partial-build-plugin

A maven plugin for partially building multi-module projects based on changes in the Git repository.
MIT License
40 stars 13 forks source link

Not able to build as its throwing error as below (Unrecognised tag: 'extension' ) #19

Closed Sam123ben closed 6 years ago

Sam123ben commented 6 years ago

[ERROR] [ERROR] Some problems were encountered while processing the POMs: [ERROR] Malformed POM /Users/samyakrout/Desktop/vlocity-repos/orch_proto/cmt-102.1/vof_orch_proto/pom.xml: Unrecognised tag: 'extension' (position: START_TAG seen ...\n ... @234:28) @ /Users/samyakrout/Desktop/vlocity-repos/orch_proto/cmt-102.1/vof_orch_proto/pom.xml, line 234, column 28

pom snippet as below:

com.lesfurets partial-build-plugin version true refs/remotes/origin/feature/incremental-build true true
ozangunalp commented 6 years ago

Hie @Sam123ben ,

I'm guessing that you had a problem copying the pom snippet, here is one that works

          <plugin>
            <groupId>com.lesfurets</groupId>
            <artifactId>partial-build-plugin</artifactId>
            <extensions>true</extensions>
            <configuration>
            ...
            </configuration>
          </plugin>

Thanks,