An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

53 lignes
960B

  1. plugins {
  2. id 'distribution'
  3. id 'maven-publish'
  4. }
  5. repositories {
  6. mavenCentral()
  7. }
  8. configurations {
  9. jre
  10. }
  11. dependencies {
  12. jre 'net.adoptopenjdk:jre:11.0.10_9:x64@zip'
  13. }
  14. def client_exe_dir = "${buildDir}/unpacked/client"
  15. def versionEnding = System.getProperty("release.marker") == 'doRelease' ? '' : '-SNAPSHOT'
  16. version = "1.0.5"+versionEnding
  17. task unpackClient(type: Copy) {
  18. from zipTree('cnf.run/generated/distributions/executable/eclipse.jar')
  19. into client_exe_dir
  20. }
  21. task unpackJre(type: Copy, dependsOn: unpackClient) {
  22. from zipTree(configurations.jre.singleFile)
  23. into "${client_exe_dir}/jre"
  24. }
  25. distributions {
  26. main {
  27. baseName = 'minimal.eclipse.bnd'
  28. contents { from "${client_exe_dir}" }
  29. }
  30. }
  31. publish.dependsOn unpackJre
  32. publishing {
  33. publications {
  34. maven(MavenPublication) {
  35. artifact distZip
  36. groupId = 'minimal.eclipse.bnd'
  37. artifactId = 'minimal.eclipse.bnd.client'
  38. }
  39. }
  40. repositories {
  41. maven "${buildDir}/repo/"
  42. }
  43. }