Skip to content

Commit

Permalink
Merge pull request #21 from lesfurets/develop
Browse files Browse the repository at this point in the history
Fix for travis build and documentation
  • Loading branch information
ozangunalp committed Jul 10, 2018
2 parents 0435834 + fcff783 commit e279744
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
language: java
jdk:
- oraclejdk8
before_install:
sudo rm /etc/mavenrc
script:
mvn verify
# safelist
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ _**Disclosure** : This plugin is forked and based on the project [gitflow-increm
## Usage

Partial Build Plugin leverages [Maven build extensions](https://maven.apache.org/examples/maven-3-lifecycle-extensions.html) to modify the projects to be build.
So be sure to add `<extension>true</extension>` in the plugin definition to enable the partial build.
So be sure to add `<extensions>true</extensions>` in the plugin definition to enable the partial build.
```xml
<build>
<plugins>
<plugin>
<groupId>com.lesfurets</groupId>
<artifactId>partial-build-plugin</artifactId>
<version>version</version>
<extension>true</extension>
<version>VERSION</version>
<extensions>true</extensions>
<configuration>
<referenceBranch>refs/remotes/origin/master</referenceBranch>
...
Expand All @@ -43,7 +43,7 @@ This will write the list of changed projects into the output file.
<plugin>
<groupId>com.lesfurets</groupId>
<artifactId>partial-build-plugin</artifactId>
<version>version</version>
<version>VERSION</version>
<executions>
<execution>
<id>changed</id>
Expand Down Expand Up @@ -71,8 +71,8 @@ This will write the list of changed projects into the output file.
<plugin>
<groupId>com.lesfurets</groupId>
<artifactId>partial-build-plugin</artifactId>
<version>version</version>
<extension>true</extension>
<version>VERSION</version>
<extensions>true</extensions>
<configuration>
<referenceBranch>refs/remote/heads/master</referenceBranch>
<buildAll>true</buildAll>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.lesfurets</groupId>
<artifactId>partial-build-plugin</artifactId>
<version>2.6</version>
<version>2.7-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>
Expand Down

0 comments on commit e279744

Please sign in to comment.