Guest User

Untitled

a guest
Mar 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. buildscript {
  2. dependencies {
  3. classpath group: "com.liferay", name: "com.liferay.gradle.plugins.workspace", version: "1.5.0"
  4. classpath group: "net.saliman", name: "gradle-properties-plugin", version: "1.4.6"
  5. }
  6.  
  7. repositories {
  8. maven {
  9. url "https://cdn.lfrs.sl/repository.liferay.com/nexus/content/groups/public"
  10. }
  11. }
  12. }
  13.  
  14. apply plugin: "net.saliman.properties"
  15.  
  16. apply plugin: "com.liferay.workspace"
  17.  
  18. apply plugin: 'java'
  19.  
  20. task api(type: Javadoc) {
  21. source = sourceSets.main.allJava
  22. destinationDir = new File(buildDir, "/api")
  23. }
Add Comment
Please, Sign In to add comment