Skip to content

Commit

Permalink
Small update of BuildProperties file
Browse files Browse the repository at this point in the history
* Link to help is using latest not Luna
* One sentence per line style
* Using capital letters for Eclipse, Maven and the like
  • Loading branch information
vogella authored and laeubi committed Nov 22, 2023
1 parent d4b1764 commit be40e01
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/site/markdown/BuildProperties.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
## Build Properties

Tycho uses the `build.properties` file [as defined by PDE](https://help.eclipse.org/luna/index.jsp?topic=/org.eclipse.pde.doc.user/reference/pde_feature_generating_build.htm) to configure various aspects of the build.
Tycho uses the `build.properties` file [as defined by PDE](https://help.eclipse.org/latest/index.jsp?topic=/org.eclipse.pde.doc.user/reference/pde_feature_generating_build.htm) to configure various aspects of the build.

Note that Tycho only supports a subset of keys defined by PDE. If a key is not supported, this may be because
Note that Tycho only supports a subset of keys defined by PDE.
If a key is not supported, this may be because:

* it's legacy/deprecated
* it doesn't fit into the maven project model or the way maven is generally expected to work
* there are other ways to achieve the desired configuration (e.g. using pom.xml)
* it's a missing feature

In addition to PDE, Tycho supports using maven property expressions like `${project.version}` in `build.properties` values. Note that these expressions will only be replaced in a Tycho build, not when using the eclipse IDE incremental build.
In additional to the PDE properties, Tycho supports property expressions like `${project.version}` in `build.properties` values.
These expressions are only used in a Tycho build, not when using the Eclipse IDE incremental build.

See the table below for which keys in `build.properties` defined by PDE are supported by Tycho or if not, whether there are alternatives when using Tycho.

### Common Properties
Expand Down

0 comments on commit be40e01

Please sign in to comment.