Skip to content

Commit

Permalink
Update tycho default version to 4.0.4
Browse files Browse the repository at this point in the history
- maven version 3.9.x will be required
- improve format on README.md
- rename test since only one on the latest default values is kept
  • Loading branch information
bmaggi committed Dec 4, 2023
1 parent 55e1f98 commit fa9bcef
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
java-version: '17'
distribution: 'temurin'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots clean install
run: mvn --batch-mode --update-snapshots -Dmaven=3.9.0 clean install
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ Generated structure
|-- com.acme.targetplatform
```
---
|Parameter|Default Value|Description|
|---------|-------------|-----------|
|groupId|groupId|Maven 'groupId'|
|artifactId|artifactId|Maven 'artifactId'|
|version|1.0.0-SNAPSHOT|Maven 'version'|
|tychoVersion|3.0.1|Tycho 'version'|
|javaVersion|17|Java 'version'|
|eclipsePlatform|latest|Eclipse target platform|
| Parameter | Default Value | Description |
|-----------------|----------------|-------------------------|
| groupId | groupId | Maven 'groupId' |
| artifactId | artifactId | Maven 'artifactId' |
| version | 1.0.0-SNAPSHOT | Maven 'version' |
| tychoVersion | 4.0.4 | Tycho 'version' |
| javaVersion | 17 | Java 'version' |
| eclipsePlatform | latest | Eclipse target platform |

Create project with Maven command line
------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To release on maven central.
- Tycho from [Maven Central](https://mvnrepository.com/artifact/org.eclipse.tycho/tycho-core)

----------------------------
- Repo should be clone using ssh (scm plugin not working with https)
- Repo should be cloned using ssh (scm plugin not working with https)
```
mvn release:clean release:prepare
```
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/maven/archetype-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<validationRegex><![CDATA[^[0-9]+\.[0-9]+\.[0-9]+-SNAPSHOT]]></validationRegex>
</requiredProperty>
<requiredProperty key="tychoVersion">
<defaultValue>3.0.1</defaultValue>
<defaultValue>4.0.4</defaultValue>
</requiredProperty>
<requiredProperty key="javaVersion">
<defaultValue>17</defaultValue>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ groupId=myGroupId
artifactId=myArtifactId
version=1.0.0-SNAPSHOT
package=myPackage
tychoVersion=3.0.1
tychoVersion=4.0.4
javaVersion=17
eclipsePlatform=latest

0 comments on commit fa9bcef

Please sign in to comment.