thufir

Untitled

Jan 30th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.67 KB | None | 0 0
  1. thufir@mordor:~/petri$
  2. thufir@mordor:~/petri$ gradle tasks
  3. :tasks
  4.  
  5. ------------------------------------------------------------
  6. All tasks runnable from root project
  7. ------------------------------------------------------------
  8.  
  9. Build Setup tasks
  10. -----------------
  11. init - Initializes a new Gradle build. [incubating]
  12. wrapper - Generates Gradle wrapper files. [incubating]
  13.  
  14. Help tasks
  15. ----------
  16. components - Displays the components produced by root project 'petri'. [incubating]
  17. dependencies - Displays all dependencies declared in root project 'petri'.
  18. dependencyInsight - Displays the insight into a specific dependency in root project 'petri'.
  19. help - Displays a help message.
  20. model - Displays the configuration model of root project 'petri'. [incubating]
  21. projects - Displays the sub-projects of root project 'petri'.
  22. properties - Displays the properties of root project 'petri'.
  23. tasks - Displays the tasks runnable from root project 'petri'.
  24.  
  25. To see all tasks and more detail, run gradle tasks --all
  26.  
  27. To see more detail about a task, run gradle help --task <task>
  28.  
  29. BUILD SUCCESSFUL
  30.  
  31. Total time: 9.044 secs
  32.  
  33. This build could be faster, please consider using the Gradle Daemon: http://gradle.org/docs/2.5/userguide/gradle_daemon.html
  34. thufir@mordor:~/petri$
  35. thufir@mordor:~/petri$ cat gradle.build
  36. apply plugin: 'java'
  37.  
  38.  
  39. archiveBaseName = "HelloWorld"
  40. version = "0.5"
  41.  
  42. thufir@mordor:~/petri$
  43. thufir@mordor:~/petri$ cat src/net/petrikainulainen/gradle/HelloWorld.java
  44. package net.petrikainulainen.gradle;
  45.  
  46. public class HelloWorld {
  47.  
  48.     public static void main(String[] args) {
  49.         System.out.println("Hello World!");
  50.     }
  51. }
  52. thufir@mordor:~/petri$
Advertisement
Add Comment
Please, Sign In to add comment