Skip to content

Commit

Permalink
Fixed typo #267
Browse files Browse the repository at this point in the history
  • Loading branch information
dhuebner committed Jun 18, 2019
1 parent 2577599 commit 184d3ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ timestamps() {
def settings = "-s /opt/public/hipp/homes/genie.xpect/.m2/settings-deploy-ossrh.xml"
sh "${mvnHome}/bin/mvn -P!tests -P maven-publish -Dtarget-platform=eclipse_4_4_2-xtext_2_9_2 ${settings} ${mvnParams} clean deploy"
}
} else if(env.BRANCH_NAME.toLowerCase().statsWith('release_')) {
} else if(env.BRANCH_NAME.toLowerCase().startsWith('release_')) {
stage('deploy') {
def settings = "-s /opt/public/hipp/homes/genie.xpect/.m2/settings-deploy-ossrh.xml"
sh "${mvnHome}/bin/mvn -P!tests -P!xtext-examples -P maven-publish -Dtarget-platform=eclipse_4_4_2-xtext_2_9_2 ${settings} ${mvnParams} clean deploy"
Expand Down
5 changes: 1 addition & 4 deletions org.eclipse.xpect.releng/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,8 @@ https://ci.eclipse.org/xpect/job/Xpect/

To select an other target platform use e.g. `-Dtarget-platform=eclipse_4_4_2-xtext_2_9_2`

```mvn org.eclipse.tycho:tycho-versions-plugin:set-version -P'!tests' -P'!xtext-examples' -DnewVersion="0.2.0.v20190618"```
```mvn org.eclipse.tycho:tycho-versions-plugin:set-version -P'!tests' -P'!xtext-examples' -DnewVersion="0.2.0.v20190618" -Dartifacts="org.eclipse.xpect.parent"```

### Sonatype Web UI

https://oss.sonatype.org/index.html


mvn org.eclipse.tycho:tycho-versions-plugin:set-version -Dtarget-platform=eclipse_4_4_2-xtext_2_9_2 -P'!tests' -P'!xtext-examples' -DnewVersion="0.2.0.v20190618"

0 comments on commit 184d3ce

Please sign in to comment.