Skip to content

Commit

Permalink
Fix add exports parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
wirew0rm committed Jun 18, 2020
1 parent 6074ee7 commit 0e3f1d7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ install:

script:
# deploy maven project if credentials are available
- if [ -n "$GPG_KEY" ]; then mvn clean deploy --settings .maven.xml -Prelease -Drevision=${REVISION} -Dchangelist=${CHANGELIST}; fi
- if [ -n "$GPG_KEY" ]; then mvn clean deploy --settings .maven.xml -Prelease -Dsha1=${REVISION} -Dchangelist=${CHANGELIST}; fi

after_success:
# create and upload coverage report
Expand Down
6 changes: 4 additions & 2 deletions chartfx-chart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<arg>--add-exports org.controlsfx.controls/impl.org.controlsfx.skin=de.gsi.chartfx-chart</arg>
<arg>--add-exports org.controlsfx.controls/impl.org.controlsfx.behavior=de.gsi.chartfx.chart</arg>
<arg>--add-exports</arg>
<arg>org.controlsfx.controls/impl.org.controlsfx.skin=de.gsi.chartfx-chart</arg>
<arg>--add-exports</arg>
<arg>org.controlsfx.controls/impl.org.controlsfx.behavior=de.gsi.chartfx.chart</arg>
</compilerArgs>
</configuration>
</plugin>
Expand Down

0 comments on commit 0e3f1d7

Please sign in to comment.